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