Warning, file /geant4/examples/advanced/air_shower/src/UltraFresnelLensParameterisation.cc was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043 #include <cmath>
0044
0045 #include "UltraFresnelLensParameterisation.hh"
0046 #include "UltraFresnelLens.hh"
0047
0048 #include "G4SystemOfUnits.hh"
0049 #include "G4VPhysicalVolume.hh"
0050 #include "G4ThreeVector.hh"
0051 #include "G4Cons.hh"
0052
0053
0054
0055 UltraFresnelLensParameterisation::UltraFresnelLensParameterisation(UltraFresnelLens* Lens)
0056 {
0057
0058 FresnelLens = Lens ;
0059 GrooveWidth = Lens->GetGrooveWidth() ;
0060 NumberOfGrooves = Lens->GetNumberOfGrooves() ;
0061
0062 dZOffset = Lens->GetSagita((NumberOfGrooves-0)*(GrooveWidth)) -
0063 Lens->GetSagita((NumberOfGrooves-1)*(GrooveWidth)) ;
0064 }
0065
0066
0067
0068 UltraFresnelLensParameterisation::~UltraFresnelLensParameterisation()
0069 {;}
0070
0071
0072
0073 void UltraFresnelLensParameterisation::ComputeTransformation
0074 (const G4int GrooveNo, G4VPhysicalVolume* physVol) const
0075 {
0076
0077 auto Rmin1 = (GrooveNo+0)*(GrooveWidth) ;
0078 auto Rmax1 = (GrooveNo+1)*(GrooveWidth) ;
0079
0080 auto dZ = FresnelLens->GetSagita(Rmax1) - FresnelLens->GetSagita(Rmin1) ;
0081
0082 if (dZ <= 0.0){
0083 G4Exception("UltraFresnelLensParameterisation::ComputeTransformation()",
0084 "AirSh003",FatalException,
0085 "UltraFresnelLensParameterisation::ComputeTransformation: Groove depth<0 !");
0086 }
0087
0088 G4ThreeVector origin(0,0,(dZ-dZOffset)/2.);
0089 physVol->SetTranslation(origin);
0090 physVol->SetRotation(0);
0091 }
0092
0093
0094
0095 void UltraFresnelLensParameterisation::ComputeDimensions
0096 (G4Cons& Groove, const G4int GrooveNo, const G4VPhysicalVolume*) const
0097 {
0098 auto Rmin1 = (GrooveNo+0)*(GrooveWidth) ;
0099 auto Rmax1 = (GrooveNo+1)*(GrooveWidth) ;
0100
0101 auto Rmin2 = Rmin1 ;
0102 auto Rmax2 = Rmin2+0.0001*mm ;
0103
0104 auto dZ = FresnelLens->GetSagita(Rmax1) - FresnelLens->GetSagita(Rmin1) ;
0105
0106 if (dZ <= 0.0){
0107 G4Exception("UltraFresnelLensParameterisation::ComputeDimensions()",
0108 "AirSh004",FatalException,
0109 "UltraFresnelLensParameterisation::ComputeDimensions: Groove depth<0 !");
0110 }
0111
0112
0113 Groove.SetInnerRadiusMinusZ(Rmin1) ;
0114 Groove.SetOuterRadiusMinusZ(Rmax1) ;
0115
0116 Groove.SetInnerRadiusPlusZ(Rmin2) ;
0117 Groove.SetOuterRadiusPlusZ(Rmax2) ;
0118
0119 Groove.SetZHalfLength(dZ/2.) ;
0120
0121 #ifdef ULTRA_VERBOSE
0122
0123 G4cout << "UltraFresnelLensParameterisation: GrooveNo " << GrooveNo+1 <<
0124 " Rmin1, Rmax1(mm): " << Rmin1/mm <<" "<< Rmax1/mm << " dZ(mm) " << dZ/mm << G4endl ;
0125 #endif
0126
0127
0128
0129 }