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