Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/extended/electromagnetic/TestEm10/src/DetectorSimpleALICE.cc

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  1 //
  2 // ********************************************************************
  3 // * License and Disclaimer                                           *
  4 // *                                                                  *
  5 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
  6 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
  7 // * conditions of the Geant4 Software License,  included in the file *
  8 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
  9 // * include a list of copyright holders.                             *
 10 // *                                                                  *
 11 // * Neither the authors of this software system, nor their employing *
 12 // * institutes,nor the agencies providing financial support for this *
 13 // * work  make  any representation or  warranty, express or implied, *
 14 // * regarding  this  software system or assume any liability for its *
 15 // * use.  Please see the license in the file  LICENSE  and URL above *
 16 // * for the full disclaimer and the limitation of liability.         *
 17 // *                                                                  *
 18 // * This  code  implementation is the result of  the  scientific and *
 19 // * technical work of the GEANT4 collaboration.                      *
 20 // * By using,  copying,  modifying or  distributing the software (or *
 21 // * any work based  on the software)  you  agree  to acknowledge its *
 22 // * use  in  resulting  scientific  publications,  and indicate your *
 23 // * acceptance of all terms of the Geant4 Software license.          *
 24 // ********************************************************************
 25 //
 26 /// \file electromagnetic/TestEm10/src/DetectorSimpleALICE.cc
 27 /// \brief Implementation of the DetectorSimpleALICE class
 28 //
 29 //
 30 //
 31 //
 32 
 33 #include "DetectorSimpleALICE.hh"
 34 
 35 #include "Materials.hh"
 36 #include "SensitiveDetector.hh"
 37 
 38 #include "G4Box.hh"
 39 #include "G4FieldManager.hh"
 40 #include "G4LogicalVolume.hh"
 41 #include "G4Material.hh"
 42 #include "G4PVPlacement.hh"
 43 #include "G4Region.hh"
 44 #include "G4SDManager.hh"
 45 #include "G4SystemOfUnits.hh"
 46 #include "G4TransportationManager.hh"
 47 #include "G4UniformMagField.hh"
 48 #include "G4UnitsTable.hh"
 49 #include "G4ios.hh"
 50 
 51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 52 
 53 DetectorSimpleALICE::DetectorSimpleALICE() : fRadiatorDescription(0) {}
 54 
 55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 56 
 57 DetectorSimpleALICE::~DetectorSimpleALICE()
 58 {
 59   // delete fRadiatorDescription;
 60   // the description is deleted in detector construction
 61 }
 62 
 63 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 64 
 65 G4VPhysicalVolume* DetectorSimpleALICE::Construct()
 66 {
 67   // Geometry parameters
 68   //
 69 
 70   G4cout << "DetectorSimpleALICE setup" << G4endl;
 71 
 72   G4double worldSizeZ = 400. * cm;
 73   G4double worldSizeR = 20. * cm;
 74 
 75   // Radiator and detector parameters
 76 
 77   G4double radThickness = 0.020 * mm;
 78   G4double gasGap = 0.250 * mm;
 79   G4double foilGasRatio = radThickness / (radThickness + gasGap);
 80   G4int foilNumber = 220;
 81 
 82   G4double absorberThickness = 38.3 * mm;
 83   G4double absorberRadius = 100. * mm;
 84 
 85   G4double windowThick = 51.0 * micrometer;
 86   G4double electrodeThick = 10.0 * micrometer;
 87   G4double gapThick = 10.0 * cm;
 88   G4double detGap = 0.01 * mm;
 89 
 90   G4double startZ = 100.0 * mm;
 91 
 92   // Materials
 93   //
 94 
 95   // Change to create materials using NIST
 96   G4Material* air = Materials::GetInstance()->GetMaterial("Air");
 97   G4Material* mylar = Materials::GetInstance()->GetMaterial("Mylar");
 98   G4Material* xe15CO2 = Materials::GetInstance()->GetMaterial("Xe15CO2");
 99 
100   G4double foilDensity = mylar->GetDensity();
101   G4double gasDensity = air->GetDensity();
102   G4double totDensity = foilDensity * foilGasRatio + gasDensity * (1.0 - foilGasRatio);
103 
104   G4double fractionFoil = foilDensity * foilGasRatio / totDensity;
105   G4double fractionGas = gasDensity * (1.0 - foilGasRatio) / totDensity;
106 
107   G4Material* radiatorMat = new G4Material("radiatorMat", totDensity, 2);
108   radiatorMat->AddMaterial(mylar, fractionFoil);
109   radiatorMat->AddMaterial(air, fractionGas);
110 
111   // Radiator description
112   fRadiatorDescription = new RadiatorDescription;
113   fRadiatorDescription->fFoilMaterial = mylar;
114   // CH2; // Kapton; // Mylar ; // Li ; // CH2 ;
115   fRadiatorDescription->fGasMaterial = air;  // CO2; // He; //
116   fRadiatorDescription->fFoilThickness = radThickness;
117   fRadiatorDescription->fGasThickness = gasGap;
118   fRadiatorDescription->fFoilNumber = foilNumber;
119 
120   G4Material* worldMaterial = air;  // CO2;
121   G4Material* absorberMaterial = xe15CO2;
122 
123   // Volumes
124   //
125 
126   G4VSolid* solidWorld = new G4Box("World", worldSizeR, worldSizeR, worldSizeZ / 2.);
127 
128   G4LogicalVolume* logicWorld = new G4LogicalVolume(solidWorld, worldMaterial, "World");
129 
130   G4VPhysicalVolume* physicsWorld =
131     new G4PVPlacement(0, G4ThreeVector(), "World", logicWorld, 0, false, 0);
132 
133   // TR radiator envelope
134 
135   G4double radThick = foilNumber * (radThickness + gasGap) - gasGap + detGap;
136   G4double radZ = startZ + 0.5 * radThick;
137 
138   G4VSolid* solidRadiator =
139     new G4Box("Radiator", 1.1 * absorberRadius, 1.1 * absorberRadius, 0.5 * radThick);
140 
141   G4LogicalVolume* logicRadiator = new G4LogicalVolume(solidRadiator, radiatorMat, "Radiator");
142 
143   new G4PVPlacement(0, G4ThreeVector(0, 0, radZ), "Radiator", logicRadiator, physicsWorld, false,
144                     0);
145 
146   fRadiatorDescription->fLogicalVolume = logicRadiator;
147 
148   // create region for window inside windowR for
149 
150   G4Region* radRegion = new G4Region("XTRradiator");
151   radRegion->AddRootLogicalVolume(logicRadiator);
152 
153   // Absorber
154 
155   G4VSolid* solidAbsorber =
156     new G4Box("Absorber", absorberRadius, absorberRadius, absorberThickness / 2.);
157 
158   G4LogicalVolume* logicAbsorber = new G4LogicalVolume(solidAbsorber, absorberMaterial, "Absorber");
159 
160   G4double windowZ = startZ + radThick + windowThick / 2. + 15.0 * mm;
161   G4double gapZ = windowZ + windowThick / 2. + gapThick / 2. + 0.01 * mm;
162   G4double electrodeZ = gapZ + gapThick / 2. + electrodeThick / 2. + 0.01 * mm;
163   G4double absorberZ = electrodeZ + electrodeThick / 2. + absorberThickness / 2. + 0.01 * mm;
164 
165   new G4PVPlacement(0, G4ThreeVector(0., 0., absorberZ), "Absorber", logicAbsorber, physicsWorld,
166                     false, 0);
167 
168   G4Region* regGasDet = new G4Region("XTRdEdxDetector");
169   regGasDet->AddRootLogicalVolume(logicAbsorber);
170 
171   // Sensitive Detectors: Absorber
172 
173   SensitiveDetector* sd = new SensitiveDetector("AbsorberSD");
174   G4SDManager::GetSDMpointer()->AddNewDetector(sd);
175   logicAbsorber->SetSensitiveDetector(sd);
176 
177   // Print geometry parameters
178 
179   G4cout << "\n The  WORLD   is made of " << worldSizeZ / mm << "mm of "
180          << worldMaterial->GetName();
181   G4cout << ", the transverse size (R) of the world is " << worldSizeR / mm << " mm. " << G4endl;
182   G4cout << " The ABSORBER is made of " << absorberThickness / mm << "mm of "
183          << absorberMaterial->GetName();
184   G4cout << ", the transverse size (R) is " << absorberRadius / mm << " mm. " << G4endl;
185   G4cout << " Z position of the (middle of the) absorber " << absorberZ / mm << "  mm." << G4endl;
186 
187   G4cout << "radZ = " << radZ / mm << " mm" << G4endl;
188   G4cout << "startZ = " << startZ / mm << " mm" << G4endl;
189 
190   G4cout << "fRadThick = " << radThick / mm << " mm" << G4endl;
191   G4cout << "fFoilNumber = " << foilNumber << G4endl;
192   G4cout << "fRadiatorMat = " << radiatorMat->GetName() << G4endl;
193   G4cout << "WorldMaterial = " << worldMaterial->GetName() << G4endl;
194   G4cout << G4endl;
195 
196   return physicsWorld;
197 }
198 
199 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
200