Class Reference for E1039 Core & Analysis Software
PHG4ParameterisationTubsEta.cc
Go to the documentation of this file.
1 // Implementation of an eta parameterization in a single phi slice for a Tubs.
2 // Shamelessly stolen from the G4ParameterisationTubs implementation (based on
3 // the Z subclass. See $G4INSTALL/source/volumes/divisions)
4 //
5 
7 
8 #include <Geant4/G4ThreeVector.hh>
9 #include <Geant4/G4RotationMatrix.hh>
10 #include <Geant4/G4VPhysicalVolume.hh>
11 #include <Geant4/G4LogicalVolume.hh>
12 #include <Geant4/G4ReflectedSolid.hh>
13 #include <Geant4/G4Tubs.hh>
14 
15 #include <iomanip>
16 
17 //--------------------------------------------------------------------------
19  G4double width, G4double offset,
20  G4VSolid* msolid, DivisionType divType ) :
21  G4VParameterisationTubs( axis, nDiv, width, offset, msolid, divType )
22 {
23  CheckParametersValidity();
24  SetType( "DivisionTubsZ" );
25 
26  // G4Tubs* msol = (G4Tubs*)(fmotherSolid);
27 // if( divType == DivWIDTH )
28 // {
29 // fnDiv = CalculateNDiv( 2*msol->GetZHalfLength(), width, offset );
30 // }
31 // else if( divType == DivNDIV )
32 // {
33 // fwidth = CalculateWidth( 2*msol->GetZHalfLength(), nDiv, offset );
34 // }
35 
36  G4Tubs* msol = (G4Tubs*)(fmotherSolid);
37  double radius = msol->GetInnerRadius();
38 
39  // TODO: allow for a placement offset in Z
40  double _centerZ = 0.0;
41 
42  double minZ = -msol->GetZHalfLength() ;
43  double maxZ = -minZ;
44  double minR = sqrt(radius*radius + minZ*minZ);
45  double minEta = -std::log((minR-minZ)/radius);
46  double maxR = sqrt(radius*radius + maxZ*maxZ);
47  double maxEta = -std::log((maxR-maxZ)/radius);
48 
49  double totalEta = maxEta - minEta;
50  double dEta = totalEta / GetNoDiv();
51  double zmin = _centerZ + radius * std::sinh(minEta);
52  for(int i=0; i<GetNoDiv(); i++)
53  {
54  // Compute the edges of this eta bin
55  double etaMin = minEta + dEta * i;
56  double etaMax = etaMin + dEta;
57 
58  // Compute the corresponding Z positions of the edges
59  //double zmin = _centerZ + radius * std::sinh(etaMin);
60  double zmax = _centerZ + radius * std::sinh(etaMax);
61 
62  // Z positions is halfway between the edges
63  double zpos = (zmin+zmax)/2.0;
64  double zhalf = (zmax-zmin)/2.0;
65  _zpos.push_back(zpos);
66  _zhalf.push_back(zhalf);
67 
68 // std::cout << i << ": " << etaMin << " " << etaMax << " "
69 // << zmin << " " << zmax << " " << zpos << " +/- " << zhalf << std::endl;
70 
71  // Start the next iteration with zmax as the new value for zmin
72  zmin = zmax;
73  }
74 
75 // G4cout << "G4ParameterisationTubsEta: Compare internal to passed args:" << G4endl
76 // << " # divisions " << fnDiv << " = " << nDiv << G4endl
77 // << " Offset " << foffset << " = " << offset << G4endl
78 // << " Width " << fwidth << " = " << width << G4endl;
79 // std::cout << "Min/Max Z = " << _zpos.front()-_zhalf.front() << " / " << _zpos.back()+_zhalf.back() << std::endl;
80 // std::cout << "Min/Max Eta = " << minEta << " / " << maxEta << std::endl;
81 }
82 
83 //--------------------------------------------------------------------------
85 {
86 }
87 
88 //------------------------------------------------------------------------
90 {
91  G4Tubs* msol = (G4Tubs*)(fmotherSolid);
92  return 2*msol->GetZHalfLength();
93 }
94 
95 //--------------------------------------------------------------------------
96 void
97 PHG4ParameterisationTubsEta::ComputeTransformation(const G4int copyNo, G4VPhysicalVolume *physVol) const
98 {
99  //----- set translation: along Z axis
100  //G4Tubs* motherTubs = (G4Tubs*)(fmotherSolid);
101 // G4double posi = - motherTubs->GetZHalfLength() + OffsetZ()
102 // + fwidth/2 + copyNo*fwidth;
103  double posi = _zpos.at(copyNo);
104  G4ThreeVector origin(0.,0.,posi);
105  physVol->SetTranslation( origin );
106 
107  //----- calculate rotation matrix: unit
108 
109 #if 0
110  {
111  G4cout << " PHG4ParameterisationTubsEta::ComputeTransformation()" << G4endl
112  << " Position: " << posi << " - copyNo: " << copyNo << G4endl
113  << " foffset " << foffset/deg << " - fwidth " << fwidth/deg
114  << G4endl;
115  }
116 #endif
117 
118  ChangeRotMatrix( physVol );
119 
120 #if 0
121  {
122  G4cout << std::setprecision(8) << " PHG4ParameterisationTubsEta " << copyNo
123  << G4endl
124  << " Position: " << origin << " - Width: " << fwidth
125  << " - Axis: " << faxis << G4endl;
126  }
127 #endif
128 }
129 
130 //--------------------------------------------------------------------------
131 void
132 PHG4ParameterisationTubsEta::ComputeDimensions( G4Tubs& tubs, const G4int copyNo,
133  const G4VPhysicalVolume* ) const
134 {
135  G4Tubs* msol = (G4Tubs*)(fmotherSolid);
136 
137  G4double pRMin = msol->GetInnerRadius();
138  G4double pRMax = msol->GetOuterRadius();
139  // G4double pDz = msol->GetZHalfLength() / GetNoDiv();
140  //G4double pDz = fwidth/2.;
141  G4double pDz = _zhalf.at(copyNo);
142  G4double pSPhi = msol->GetStartPhiAngle();
143  G4double pDPhi = msol->GetDeltaPhiAngle();
144 
145  tubs.SetInnerRadius( pRMin );
146  tubs.SetOuterRadius( pRMax );
147  tubs.SetZHalfLength( pDz );
148  tubs.SetStartPhiAngle( pSPhi );
149  tubs.SetDeltaPhiAngle( pDPhi );
150 
151 #if 0
152  {
153  G4cout << " PHG4ParameterisationTubsEta::ComputeDimensions()" << G4endl
154  << " pDz: " << pDz << G4endl;
155  tubs.DumpInfo();
156  }
157 #endif
158 }
virtual void ComputeTransformation(const G4int copyNo, G4VPhysicalVolume *physVol) const
virtual G4double GetMaxParameter() const
void ComputeDimensions(G4Tubs &tubs, const G4int copyNo, const G4VPhysicalVolume *physVol) const
PHG4ParameterisationTubsEta(EAxis axis, G4int nCopies, G4double offset, G4double step, G4VSolid *motherSolid, DivisionType divType=DivNDIVandWIDTH)