3 #include <Geant4/G4VPhysicalVolume.hh>
4 #include <Geant4/G4ThreeVector.hh>
5 #include <Geant4/G4Tubs.hh>
24 _neta(neta), _minEta(minEta), _maxEta(maxEta),
25 _startPhi(startPhi), _deltaPhi(deltaPhi),
26 _radiusIn(radiusIn), _radiusOut(radiusOut),
29 if ( _maxEta < _minEta )
31 cout <<
" invalid eta, max<min"
32 <<
" etamin: " << _minEta
33 <<
" etamax: " << _maxEta
39 if ( (_radiusIn<0.0) || (_radiusOut<0.0) || (_radiusOut<_radiusIn) )
41 cout <<
" invalid radius parameters:"
42 <<
" radiusIn: " << radiusIn
43 <<
" radiusOut: " << radiusOut
49 double totalEta = _maxEta - _minEta;
50 double dEta = totalEta / _neta;
53 for(
unsigned int i=0; i<neta; i++)
56 double etaMin = _minEta + dEta * i;
57 double etaMax = etaMin + dEta;
59 double zmin = _centerZ + _radiusIn * std::sinh(etaMin);
60 double zmax = _centerZ + _radiusIn * std::sinh(etaMax);
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;
71 for(
unsigned int i=0; i<_neta; i++)
76 std::cout <<
"*********** Constructing PHG4EtaParameterization ***************" << std::endl;
77 std::cout << std::endl;
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;
83 std::cout << std::endl;
84 std::cout <<
"********* End Constructing PHG4EtaParameterization *************" << std::endl;
90 std::cout <<
"PHG4EtaParameterization::~PHG4EtaParameterization: Alas, poor Yorick! I knew him, Horatio"
97 os <<
"PhiEtaParameterization: NETA = " << _neta << std::endl;
99 std::copy(_zpos.begin(),_zpos.end(),std::ostream_iterator<double>(os,
" "));
107 G4ThreeVector origin(0,0,_zpos.at(iring));
108 physVol->SetTranslation(origin);
109 physVol->SetRotation(0);
114 const G4VPhysicalVolume*)
const
117 ring.SetZHalfLength(_zhalf.at(copyNo));
118 ring.SetInnerRadius(_radiusIn);
119 ring.SetOuterRadius(_radiusOut);
120 ring.SetStartPhiAngle(_startPhi);
121 ring.SetDeltaPhiAngle(_deltaPhi);
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
virtual ~PHG4EtaParameterization()
void ComputeTransformation(const G4int copyNo, G4VPhysicalVolume *physVol) const
virtual void Print(std::ostream &os=std::cout) const