Geant4.10
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
B2aDetectorConstruction Class Reference

#include <B2aDetectorConstruction.hh>

Inheritance diagram for B2aDetectorConstruction:
G4VUserDetectorConstruction

Public Member Functions

 B2aDetectorConstruction ()
 
virtual ~B2aDetectorConstruction ()
 
virtual G4VPhysicalVolumeConstruct ()
 
virtual void ConstructSDandField ()
 
void SetTargetMaterial (G4String)
 
void SetChamberMaterial (G4String)
 
void SetMaxStep (G4double)
 
void SetCheckOverlaps (G4bool)
 
- Public Member Functions inherited from G4VUserDetectorConstruction
 G4VUserDetectorConstruction ()
 
virtual ~G4VUserDetectorConstruction ()
 
virtual void CloneSD ()
 
virtual void CloneF ()
 
void RegisterParallelWorld (G4VUserParallelWorld *)
 
G4int ConstructParallelGeometries ()
 
void ConstructParallelSD ()
 
G4int GetNumberOfParallelWorld () const
 
G4VUserParallelWorldGetParallelWorld (G4int i) const
 

Additional Inherited Members

- Protected Member Functions inherited from G4VUserDetectorConstruction
void SetSensitiveDetector (const G4String &logVolName, G4VSensitiveDetector *aSD, G4bool multi=false)
 
void SetSensitiveDetector (G4LogicalVolume *logVol, G4VSensitiveDetector *aSD)
 

Detailed Description

Detector construction class to define materials, geometry and global uniform magnetic field.

Definition at line 49 of file B2aDetectorConstruction.hh.

Constructor & Destructor Documentation

B2aDetectorConstruction::B2aDetectorConstruction ( )

Definition at line 60 of file B2aDetectorConstruction.cc.

62  fNbOfChambers(0),
63  fLogicTarget(NULL), fLogicChamber(NULL),
64  fTargetMaterial(NULL), fChamberMaterial(NULL),
65  fStepLimit(NULL),
66  fCheckOverlaps(true)
67 {
68  fMessenger = new B2aDetectorMessenger(this);
69 
70  fNbOfChambers = 5;
71  fLogicChamber = new G4LogicalVolume*[fNbOfChambers];
72 }
B2aDetectorConstruction::~B2aDetectorConstruction ( )
virtual

Definition at line 76 of file B2aDetectorConstruction.cc.

77 {
78  delete [] fLogicChamber;
79  delete fStepLimit;
80  delete fMessenger;
81 }

Member Function Documentation

G4VPhysicalVolume * B2aDetectorConstruction::Construct ( void  )
virtual

Implements G4VUserDetectorConstruction.

Definition at line 85 of file B2aDetectorConstruction.cc.

86 {
87  // Define materials
88  DefineMaterials();
89 
90  // Define volumes
91  return DefineVolumes();
92 }
void B2aDetectorConstruction::ConstructSDandField ( )
virtual

Reimplemented from G4VUserDetectorConstruction.

Definition at line 288 of file B2aDetectorConstruction.cc.

References G4AutoDelete::Register(), G4VUserDetectorConstruction::SetSensitiveDetector(), and G4GlobalMagFieldMessenger::SetVerboseLevel().

289 {
290  // Sensitive detectors
291 
292  G4String trackerChamberSDname = "B2/TrackerChamberSD";
293  B2TrackerSD* aTrackerSD = new B2TrackerSD(trackerChamberSDname,
294  "TrackerHitsCollection");
295  // Setting aTrackerSD to all logical volumes with the same name
296  // of "Chamber_LV".
297  SetSensitiveDetector("Chamber_LV", aTrackerSD, true);
298 
299  // Create global magnetic field messenger.
300  // Uniform magnetic field is then created automatically if
301  // the field value is not zero.
302  G4ThreeVector fieldValue = G4ThreeVector();
303  fMagFieldMessenger = new G4GlobalMagFieldMessenger(fieldValue);
304  fMagFieldMessenger->SetVerboseLevel(1);
305 
306  // Register the field messenger for deleting
307  G4AutoDelete::Register(fMagFieldMessenger);
308 }
void SetVerboseLevel(G4int verboseLevel)
CLHEP::Hep3Vector G4ThreeVector
void Register(T *inst)
Definition: G4AutoDelete.hh:65
void SetSensitiveDetector(const G4String &logVolName, G4VSensitiveDetector *aSD, G4bool multi=false)
void B2aDetectorConstruction::SetChamberMaterial ( G4String  materialName)

Definition at line 333 of file B2aDetectorConstruction.cc.

References G4NistManager::FindOrBuildMaterial(), G4cout, G4endl, G4NistManager::Instance(), and EmPlot::SetMaterial().

Referenced by B2aDetectorMessenger::SetNewValue().

334 {
335  G4NistManager* nistManager = G4NistManager::Instance();
336 
337  G4Material* pttoMaterial =
338  nistManager->FindOrBuildMaterial(materialName);
339 
340  if (fChamberMaterial != pttoMaterial) {
341  if ( pttoMaterial ) {
342  fChamberMaterial = pttoMaterial;
343  for (G4int copyNo=0; copyNo<fNbOfChambers; copyNo++) {
344  if (fLogicChamber[copyNo]) fLogicChamber[copyNo]->
345  SetMaterial(fChamberMaterial);
346  }
347  G4cout << "\n----> The chambers are made of " << materialName << G4endl;
348  } else {
349  G4cout << "\n--> WARNING from SetChamberMaterial : "
350  << materialName << " not found" << G4endl;
351  }
352  }
353 }
G4Material * FindOrBuildMaterial(const G4String &name, G4bool isotopes=true, G4bool warning=false)
int G4int
Definition: G4Types.hh:78
static G4NistManager * Instance()
G4GLOB_DLL std::ostream G4cout
def SetMaterial
Definition: EmPlot.py:25
#define G4endl
Definition: G4ios.hh:61
void B2aDetectorConstruction::SetCheckOverlaps ( G4bool  checkOverlaps)

Definition at line 364 of file B2aDetectorConstruction.cc.

365 {
366  fCheckOverlaps = checkOverlaps;
367 }
void B2aDetectorConstruction::SetMaxStep ( G4double  maxStep)

Definition at line 357 of file B2aDetectorConstruction.cc.

References G4UserLimits::SetMaxAllowedStep().

Referenced by B2aDetectorMessenger::SetNewValue().

358 {
359  if ((fStepLimit)&&(maxStep>0.)) fStepLimit->SetMaxAllowedStep(maxStep);
360 }
virtual void SetMaxAllowedStep(G4double ustepMax)
void B2aDetectorConstruction::SetTargetMaterial ( G4String  materialName)

Definition at line 312 of file B2aDetectorConstruction.cc.

References G4NistManager::FindOrBuildMaterial(), G4cout, G4endl, G4NistManager::Instance(), and G4LogicalVolume::SetMaterial().

Referenced by B2aDetectorMessenger::SetNewValue().

313 {
314  G4NistManager* nistManager = G4NistManager::Instance();
315 
316  G4Material* pttoMaterial =
317  nistManager->FindOrBuildMaterial(materialName);
318 
319  if (fTargetMaterial != pttoMaterial) {
320  if ( pttoMaterial ) {
321  fTargetMaterial = pttoMaterial;
322  if (fLogicTarget) fLogicTarget->SetMaterial(fTargetMaterial);
323  G4cout << "\n----> The target is made of " << materialName << G4endl;
324  } else {
325  G4cout << "\n--> WARNING from SetTargetMaterial : "
326  << materialName << " not found" << G4endl;
327  }
328  }
329 }
G4Material * FindOrBuildMaterial(const G4String &name, G4bool isotopes=true, G4bool warning=false)
static G4NistManager * Instance()
G4GLOB_DLL std::ostream G4cout
#define G4endl
Definition: G4ios.hh:61
void SetMaterial(G4Material *pMaterial)

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