Loading...
Searching...
No Matches
Public Member Functions | Private Attributes | Static Private Attributes | List of all members
ExGflash1DetectorConstruction Class Reference

#include <Doxymodules_parameterisations.h>

Inheritance diagram for ExGflash1DetectorConstruction:
G4VUserDetectorConstruction

Public Member Functions

 ExGflash1DetectorConstruction ()
 
 ~ExGflash1DetectorConstruction () override
 
G4VPhysicalVolumeConstruct () override
 
void ConstructSDandField () override
 
const G4VPhysicalVolumeGetCristal (int aNumCrystal)
 

Private Attributes

G4LogicalVolumefCrystalLog {nullptr}
 
G4VPhysicalVolumefCrystalPhys [100] {}
 
G4RegionfRegion {nullptr}
 

Static Private Attributes

static G4ThreadLocal GFlashShowerModelfFastShowerModel = nullptr
 
static G4ThreadLocal GFlashHomoShowerParameterisationfParameterisation = nullptr
 
static G4ThreadLocal GFlashParticleBoundsfParticleBounds = nullptr
 
static G4ThreadLocal GFlashHitMakerfHitMaker = nullptr
 

Detailed Description

Definition at line 106 of file Doxymodules_parameterisations.h.

Constructor & Destructor Documentation

◆ ExGflash1DetectorConstruction()

ExGflash1DetectorConstruction::ExGflash1DetectorConstruction ( )

Definition at line 65 of file ExGflash1DetectorConstruction.cc.

66{
67 G4cout << "ExGflash1DetectorConstruction::Detector constructor" << G4endl;
68}

◆ ~ExGflash1DetectorConstruction()

ExGflash1DetectorConstruction::~ExGflash1DetectorConstruction ( )
override

Definition at line 72 of file ExGflash1DetectorConstruction.cc.

73{
74 delete fFastShowerModel;
75 delete fParameterisation;
76 delete fParticleBounds;
77 delete fHitMaker;
78}
static G4ThreadLocal GFlashHomoShowerParameterisation * fParameterisation
static G4ThreadLocal GFlashHitMaker * fHitMaker
static G4ThreadLocal GFlashParticleBounds * fParticleBounds
static G4ThreadLocal GFlashShowerModel * fFastShowerModel

Member Function Documentation

◆ Construct()

G4VPhysicalVolume * ExGflash1DetectorConstruction::Construct ( )
override

Definition at line 82 of file ExGflash1DetectorConstruction.cc.

83{
84 //--------- Definitions of Solids, Logical Volumes, Physical Volumes ---------
85 G4cout << "Defining the materials" << G4endl;
86 // Get nist material manager
87 G4NistManager* nistManager = G4NistManager::Instance();
88 // Build materials
89 G4Material* air = nistManager->FindOrBuildMaterial("G4_AIR");
90 G4Material* pbWO4 = nistManager->FindOrBuildMaterial("G4_PbWO4");
91
92 /*******************************
93 * The Experimental Hall *
94 *******************************/
95 G4double experimentalHall_x = 1000. * cm;
96 G4double experimentalHall_y = 1000. * cm;
97 G4double experimentalHall_z = 1000. * cm;
98
99 G4VSolid* experimentalHall_box = new G4Box("expHall_box", // World Volume
100 experimentalHall_x, // x size
101 experimentalHall_y, // y size
102 experimentalHall_z); // z size
103
104 auto experimentalHallLog = new G4LogicalVolume(experimentalHall_box, air, "expHallLog",
105 nullptr, // opt: fieldManager
106 nullptr, // opt: SensitiveDetector
107 nullptr); // opt: UserLimits
108 G4VPhysicalVolume* experimentalHallPhys =
109 new G4PVPlacement(nullptr,
110 G4ThreeVector(), // at (0,0,0)
111 "expHall", experimentalHallLog, nullptr, false, 0);
112
113 //------------------------------
114 // Calorimeter segments
115 //------------------------------
116 // Simplified `CMS-like` PbWO4 crystal calorimeter
117
118 G4int nbOfCrystals = 10; // this are the crystals PER ROW in this example
119 // cube of 10 x 10 crystals
120 // don't change it @the moment, since
121 // the readout in event action assumes this
122 // dimensions and is not automatically adapted
123 // in this version of the example :-(
124 // Simplified `CMS-like` PbWO4 crystal calorimeter
125 G4double calo_xside = 31 * cm;
126 G4double calo_yside = 31 * cm;
127 G4double calo_zside = 24 * cm;
128
129 G4double crystalWidth = 3 * cm;
130 G4double crystalLength = 24 * cm;
131
132 calo_xside = (crystalWidth * nbOfCrystals) + 1 * cm;
133 calo_yside = (crystalWidth * nbOfCrystals) + 1 * cm;
134 calo_zside = crystalLength;
135
136 auto calo_box = new G4Box("CMS calorimeter", // its name
137 calo_xside / 2., // size
138 calo_yside / 2., calo_zside / 2.);
139 auto caloLog = new G4LogicalVolume(calo_box, // its solid
140 air, // its material
141 "calo log", // its name
142 nullptr, // opt: fieldManager
143 nullptr, // opt: SensitiveDetector
144 nullptr); // opt: UserLimit
145
146 G4double xpos = 0.0;
147 G4double ypos = 0.0;
148 G4double zpos = 100.0 * cm;
149 new G4PVPlacement(nullptr, G4ThreeVector(xpos, ypos, zpos), caloLog, "calorimeter",
150 experimentalHallLog, false, 1);
151
152 // Crystals
153 G4VSolid* crystal_box = new G4Box("Crystal", // its name
154 crystalWidth / 2, crystalWidth / 2, crystalLength / 2);
155 // size
156 fCrystalLog = new G4LogicalVolume(crystal_box, // its solid
157 pbWO4, // its material
158 "CrystalLog"); // its name
159
160 for (G4int i = 0; i < nbOfCrystals; i++) {
161 for (G4int j = 0; j < nbOfCrystals; j++) {
162 G4int n = i * 10 + j;
163 G4ThreeVector crystalPos((i * crystalWidth) - 135, (j * crystalWidth) - 135, 0);
164 fCrystalPhys[n] = new G4PVPlacement(nullptr, // no rotation
165 crystalPos, // translation
167 "crystal", // its name
168 caloLog, false, i);
169 }
170 }
171 G4cout << "There are " << nbOfCrystals << " crystals per row in the calorimeter, so in total "
172 << nbOfCrystals * nbOfCrystals << " crystals" << G4endl;
173 G4cout << "They have width of " << crystalWidth / cm << " cm and a length of "
174 << crystalLength / cm << " cm. The Material is " << pbWO4 << G4endl;
175
176 experimentalHallLog->SetVisAttributes(G4VisAttributes::GetInvisible());
177 auto caloVisAtt = new G4VisAttributes(G4Colour(1.0, 1.0, 1.0));
178 auto crystalVisAtt = new G4VisAttributes(G4Colour(1.0, 1.0, 0.0));
179 caloLog->SetVisAttributes(caloVisAtt);
180 fCrystalLog->SetVisAttributes(crystalVisAtt);
181
182 // define the fParameterisation region
183 fRegion = new G4Region("crystals");
184 caloLog->SetRegion(fRegion);
185 fRegion->AddRootLogicalVolume(caloLog);
186
187 return experimentalHallPhys;
188}

◆ ConstructSDandField()

void ExGflash1DetectorConstruction::ConstructSDandField ( )
override

Definition at line 192 of file ExGflash1DetectorConstruction.cc.

193{
194 // -- sensitive detectors:
195 G4SDManager* SDman = G4SDManager::GetSDMpointer();
196 auto CaloSD = new ExGflash1SensitiveDetector("Calorimeter", this);
197 SDman->AddNewDetector(CaloSD);
198 fCrystalLog->SetSensitiveDetector(CaloSD);
199
200 // Get nist material manager
201 G4NistManager* nistManager = G4NistManager::Instance();
202 G4Material* pbWO4 = nistManager->FindOrBuildMaterial("G4_PbWO4");
203 // -- fast simulation models:
204 // **********************************************
205 // * Initializing shower modell
206 // ***********************************************
207 G4cout << "Creating shower parameterization models" << G4endl;
208 fFastShowerModel = new GFlashShowerModel("fFastShowerModel", fRegion);
210 fFastShowerModel->SetParameterisation(*fParameterisation);
211 // Energy Cuts to kill particles:
213 fFastShowerModel->SetParticleBounds(*fParticleBounds);
214 // Makes the EnergieSpots
216 fFastShowerModel->SetHitMaker(*fHitMaker);
217 G4cout << "end shower parameterization." << G4endl;
218 // **********************************************
219}

◆ GetCristal()

const G4VPhysicalVolume * ExGflash1DetectorConstruction::GetCristal ( int  aNumCrystal)
inline

Definition at line 54 of file ExGflash1DetectorConstruction.hh.

54{ return fCrystalPhys[aNumCrystal]; };

Member Data Documentation

◆ fCrystalLog

G4LogicalVolume* ExGflash1DetectorConstruction::fCrystalLog {nullptr}
private

Definition at line 57 of file ExGflash1DetectorConstruction.hh.

57{nullptr};

◆ fCrystalPhys

G4VPhysicalVolume* ExGflash1DetectorConstruction::fCrystalPhys[100] {}
private

Definition at line 58 of file ExGflash1DetectorConstruction.hh.

58{};

◆ fRegion

G4Region* ExGflash1DetectorConstruction::fRegion {nullptr}
private

Definition at line 59 of file ExGflash1DetectorConstruction.hh.

59{nullptr};

◆ fFastShowerModel

G4ThreadLocal GFlashShowerModel* ExGflash1DetectorConstruction::fFastShowerModel = nullptr
inlinestaticprivate

Definition at line 61 of file ExGflash1DetectorConstruction.hh.

◆ fParameterisation

G4ThreadLocal GFlashHomoShowerParameterisation* ExGflash1DetectorConstruction::fParameterisation = nullptr
inlinestaticprivate

Definition at line 62 of file ExGflash1DetectorConstruction.hh.

◆ fParticleBounds

G4ThreadLocal GFlashParticleBounds* ExGflash1DetectorConstruction::fParticleBounds = nullptr
inlinestaticprivate

Definition at line 63 of file ExGflash1DetectorConstruction.hh.

◆ fHitMaker

G4ThreadLocal GFlashHitMaker* ExGflash1DetectorConstruction::fHitMaker = nullptr
inlinestaticprivate

Definition at line 64 of file ExGflash1DetectorConstruction.hh.


The documentation for this class was generated from the following files:

Applications | User Support | Publications | Collaboration