Class Reference for E1039 Core & Analysis Software
PHG4EtaPhiParameterization.cc
Go to the documentation of this file.
2 
3 
4 #include <Geant4/G4VPhysicalVolume.hh>
5 #include <Geant4/G4ThreeVector.hh>
6 #include <Geant4/G4Tubs.hh>
7 
8 #include <cmath>
9 #include <cstdlib>
10 #include <iostream>
11 #include <iterator>
12 
14  unsigned int neta, // Binning in eta
15  double minEta, // "
16  double maxEta, // "
17  unsigned int nphi, // number of phi bins
18  double startPhi,
19  double deltaPhi,
20  double radiusIn, // Radius of inner face of cylinder
21  double radiusOut, // Radius of outer face of cylinder
22  double centerZ // Z of center of set
23  ) :
24  _neta(neta), _minEta(minEta), _maxEta(maxEta),
25  _nphi(nphi), _startPhi(startPhi), _deltaPhi(deltaPhi),
26  _radiusIn(radiusIn), _radiusOut(radiusOut),
27  _centerZ(centerZ)
28 {
29  if ( _maxEta < _minEta )
30  {
31  std::cout << " invalid eta, max<min"
32  << " etamin: " << _minEta
33  << " etamax: " << _maxEta
34  << std::endl;
35  exit(1);
36  }
37 
38  if ( (_radiusIn<0.0) || (_radiusOut<0.0) || (_radiusOut<_radiusIn) )
39  {
40  std::cout << " invalid radius parameters:"
41  << " radiusIn: " << radiusIn
42  << " radiusOut: " << radiusOut
43  << std::endl;
44  exit(1);
45  }
46 
47  double totalEta = _maxEta - _minEta;
48  double dEta = totalEta / _neta;
49  for(unsigned int i=0; i<neta; i++)
50  {
51  // Compute the edges of this eta bin
52  double etaMin = _minEta + dEta * i;
53  double etaMax = etaMin + dEta;
54  //double eta = _minEta + dEta * (i + 0.5);
55  // Compute the corresponding Z positions of the edges
56  double zmin = _centerZ + _radiusIn * std::sinh(etaMin);
57  double zmax = _centerZ + _radiusIn * std::sinh(etaMax);
58  // Z positions is halfway between the edges
59  double zpos = (zmin+zmax)/2.0;
60  double zhalf = (zmax-zmin)/2.0;
61  _zpos.push_back(zpos);
62  _zhalf.push_back(zhalf);
63  }
64 
65  for(unsigned int i=0; i<_nphi; i++)
66  {
67  _phi0.push_back(_startPhi+i*_deltaPhi);
68  _phi1.push_back(_startPhi+(i+1)*_deltaPhi);
69  }
70 
71  // Build lookup vectors for the copyNo->(ieta, iphi) translation
72  //
73  for(unsigned int i=0; i<_neta*_nphi; i++)
74  {
75  div_t q = div((int)i, (int)_nphi);
76  int ieta = q.quot;
77  int iphi = q.rem;
78  _ieta.push_back(ieta);
79  _iphi.push_back(iphi);
80  }
81 }
82 
84 {
85  std::cout << "PHG4EtaPhiParameterization::~PHG4EtaPhiParameterization: Alas, poor Yorick! I knew him, Horatio"
86  << std::endl;
87 }
88 
89 void
90 PHG4EtaPhiParameterization::Print(std::ostream& os) const
91 {
92  os << "PhiEtaPhiParameterization: NETA x NPHI = " << _neta << " x " << _nphi << std::endl;
93  os << "Zpos: ";
94  std::copy(_zpos.begin(),_zpos.end(),std::ostream_iterator<double>(os," "));
95  os << std::endl;
96  os << "Phi0: ";
97  std::copy(_phi0.begin(),_phi0.end(),std::ostream_iterator<double>(os," "));
98  os << std::endl;
99  os << "Phi1: ";
100  std::copy(_phi0.begin(),_phi0.end(),std::ostream_iterator<double>(os," "));
101  os << std::endl;
102 }
103 
104 void
105 PHG4EtaPhiParameterization::ComputeTransformation(const G4int copyNo, G4VPhysicalVolume* physVol) const
106 {
107  int iring = copyNo/_nphi;
108  G4ThreeVector origin(0,0,_zpos.at(iring));
109  physVol->SetTranslation(origin);
110  physVol->SetRotation(0);
111 }
112 
113 void
114 PHG4EtaPhiParameterization::ComputeDimensions(G4Tubs& ring, const G4int copyNo,
115  const G4VPhysicalVolume*) const
116 {
117  int ieta = GetIEta(copyNo);
118  int iphi = GetIPhi(copyNo);
119  double phi = _phi0.at(iphi);
120  double dphi = _phi1.at(iphi) - phi;
121  ring.SetZHalfLength(_zhalf.at(ieta));
122  ring.SetInnerRadius(_radiusIn);
123  ring.SetOuterRadius(_radiusOut);
124  ring.SetStartPhiAngle(phi);
125  ring.SetDeltaPhiAngle(dphi);
126 }
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)