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

Detector construction for laoding GDML geometry. More...

#include <Doxymodules_persistency.h>

Inheritance diagram for G04DetectorConstruction:
G4VUserDetectorConstruction

Public Member Functions

 G04DetectorConstruction (const G4GDMLParser &parser)
 
virtual G4VPhysicalVolumeConstruct ()
 
virtual void ConstructSDandField ()
 

Private Attributes

const G4GDMLParserfParser
 

Detailed Description

Detector construction for laoding GDML geometry.

Definition at line 63 of file Doxymodules_persistency.h.

Constructor & Destructor Documentation

◆ G04DetectorConstruction()

G04DetectorConstruction::G04DetectorConstruction ( const G4GDMLParser parser)

Member Function Documentation

◆ Construct()

G4VPhysicalVolume * G04DetectorConstruction::Construct ( )
virtual

Definition at line 44 of file G04DetectorConstruction.cc.

45{
46 return fParser.GetWorldVolume();
47}

◆ ConstructSDandField()

void G04DetectorConstruction::ConstructSDandField ( )
virtual

Definition at line 51 of file G04DetectorConstruction.cc.

52{
53 //------------------------------------------------
54 // Sensitive detectors
55 //------------------------------------------------
56
57 G4SDManager* SDman = G4SDManager::GetSDMpointer();
58
59 G4String trackerChamberSDname = "Tracker";
60 G04SensitiveDetector* aTrackerSD =
61 new G04SensitiveDetector(trackerChamberSDname);
62 SDman->AddNewDetector( aTrackerSD );
63
64 ///////////////////////////////////////////////////////////////////////
65 //
66 // Example how to retrieve Auxiliary Information for sensitive detector
67 //
68 const G4GDMLAuxMapType* auxmap = fParser.GetAuxMap();
69 G4cout << "Found " << auxmap->size()
70 << " volume(s) with auxiliary information."
71 << G4endl << G4endl;
72 for(G4GDMLAuxMapType::const_iterator iter=auxmap->begin();
73 iter!=auxmap->end(); iter++)
74 {
75 G4cout << "Volume " << ((*iter).first)->GetName()
76 << " has the following list of auxiliary information: "
77 << G4endl << G4endl;
78 for (G4GDMLAuxListType::const_iterator vit=(*iter).second.begin();
79 vit!=(*iter).second.end(); vit++)
80 {
81 G4cout << "--> Type: " << (*vit).type
82 << " Value: " << (*vit).value << G4endl;
83 }
84 }
85 G4cout << G4endl;
86
87 // The same as above, but now we are looking for
88 // sensitive detectors setting them for the volumes
89
90 for(G4GDMLAuxMapType::const_iterator iter=auxmap->begin();
91 iter!=auxmap->end(); iter++)
92 {
93 G4cout << "Volume " << ((*iter).first)->GetName()
94 << " has the following list of auxiliary information: "
95 << G4endl << G4endl;
96 for (G4GDMLAuxListType::const_iterator vit=(*iter).second.begin();
97 vit!=(*iter).second.end();vit++)
98 {
99 if ((*vit).type=="SensDet")
100 {
101 G4cout << "Attaching sensitive detector " << (*vit).value
102 << " to volume " << ((*iter).first)->GetName()
103 << G4endl << G4endl;
104
105 G4VSensitiveDetector* mydet =
106 SDman->FindSensitiveDetector((*vit).value);
107 if(mydet)
108 {
109 G4LogicalVolume* myvol = (*iter).first;
110 myvol->SetSensitiveDetector(mydet);
111 }
112 else
113 {
114 G4cout << (*vit).value << " detector not found" << G4endl;
115 }
116 }
117 }
118 }
119}
Sensitive detector to be attached to the GDML geometry.

Member Data Documentation

◆ fParser

const G4GDMLParser& G04DetectorConstruction::fParser
private

Definition at line 51 of file G04DetectorConstruction.hh.


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

Applications | User Support | Publications | Collaboration