Class Reference for E1039 Core & Analysis Software
PHG4EtaParameterization.h
Go to the documentation of this file.
1 #ifndef __PHG4ETAPARAMETERIZATION_H__
2 #define __PHG4ETAPARAMETERIZATION_H__
3 
4 #include <Geant4/globals.hh>
5 #include <Geant4/G4VPVParameterisation.hh>
6 
7 #include <vector>
8 
9 class G4VPhysicalVolume;
10 class G4Box;
11 
12 // Parameterization to define rings whose size changes with Z to
13 // correspond to fixed width in eta.
14 
15 class PHG4EtaParameterization : public G4VPVParameterisation
16 {
17 public:
18 
20  unsigned int neta, // Binning in eta
21  double minEta, // "
22  double maxEta, // "
23  double startPhi,
24  double deltaPhi,
25  double radiusIn, // Radius of inner face of cylinder
26  double radiusOut, // Radius of outer face of cylinder
27  double centerZ // overall Z of center of rings
28  );
29 
30  virtual ~PHG4EtaParameterization();
31 
32  virtual void Print(std::ostream& os = std::cout) const;
33 
34  void ComputeTransformation(const G4int copyNo,
35  G4VPhysicalVolume* physVol) const;
36 
37  void ComputeDimensions(G4Tubs& ring, const G4int copyNo,
38  const G4VPhysicalVolume* physVol) const;
39 
40  int GetIEta(int copyNo) const { return _ieta.at(copyNo); }
41 
42 private: // Dummy declarations to get rid of warnings ...
43 
44 // void ComputeDimensions(G4Trd&,const G4int,const G4VPhysicalVolume*) const {}
45 // void ComputeDimensions(G4Trap&,const G4int,const G4VPhysicalVolume*) const {}
46 // void ComputeDimensions(G4Cons&,const G4int,const G4VPhysicalVolume*) const {}
47 // void ComputeDimensions(G4Sphere&,const G4int,const G4VPhysicalVolume*) const {}
48 // void ComputeDimensions(G4Orb&,const G4int,const G4VPhysicalVolume*) const {}
49 // void ComputeDimensions(G4Torus&,const G4int,const G4VPhysicalVolume*) const {}
50 // void ComputeDimensions(G4Para&,const G4int,const G4VPhysicalVolume*) const {}
51 // void ComputeDimensions(G4Hype&,const G4int,const G4VPhysicalVolume*) const {}
52 // void ComputeDimensions(G4Box&,const G4int,const G4VPhysicalVolume*) const {}
53 // void ComputeDimensions(G4Polycone&,const G4int,const G4VPhysicalVolume*) const {}
54 // void ComputeDimensions(G4Polyhedra&,const G4int,const G4VPhysicalVolume*) const {}
55 
56 private:
57 
58  unsigned int _neta;
59  double _minEta;
60  double _maxEta;
61  double _startPhi;
62  double _deltaPhi;
63  double _radiusIn;
64  double _radiusOut;
65  double _centerZ;
66  std::vector<double> _zpos; // Z positions of the rings
67  std::vector<double> _zhalf; // Z half-widths of the rings
68  std::vector<double> _phi0; // Lower edge of phi bins
69  std::vector<double> _phi1; // Upper edge of phi bins
70  std::vector<int> _ieta;
71  std::vector<int> _iphi;
72 };
73 
74 
75 #endif
PHG4EtaParameterization(unsigned int neta, double minEta, double maxEta, double startPhi, double deltaPhi, double radiusIn, double radiusOut, double centerZ)
void ComputeDimensions(G4Tubs &ring, const G4int copyNo, const G4VPhysicalVolume *physVol) const
int GetIEta(int copyNo) const
void ComputeTransformation(const G4int copyNo, G4VPhysicalVolume *physVol) const
virtual void Print(std::ostream &os=std::cout) const