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

#include <G4HumanPhantomSD.hh>

Inheritance diagram for G4HumanPhantomSD:
G4VSensitiveDetector

Public Member Functions

 G4HumanPhantomSD (const G4String &name, const G4String &hitsCollectionName)
 
 ~G4HumanPhantomSD ()
 
void Initialize (G4HCofThisEvent *)
 
G4bool ProcessHits (G4Step *, G4TouchableHistory *)
 
void EndOfEvent (G4HCofThisEvent *)
 
- Public Member Functions inherited from G4VSensitiveDetector
 G4VSensitiveDetector (G4String name)
 
 G4VSensitiveDetector (const G4VSensitiveDetector &right)
 
virtual ~G4VSensitiveDetector ()
 
const G4VSensitiveDetectoroperator= (const G4VSensitiveDetector &right)
 
G4int operator== (const G4VSensitiveDetector &right) const
 
G4int operator!= (const G4VSensitiveDetector &right) const
 
virtual void clear ()
 
virtual void DrawAll ()
 
virtual void PrintAll ()
 
G4bool Hit (G4Step *aStep)
 
void SetROgeometry (G4VReadOutGeometry *value)
 
void SetFilter (G4VSDFilter *value)
 
G4int GetNumberOfCollections () const
 
G4String GetCollectionName (G4int id) const
 
void SetVerboseLevel (G4int vl)
 
void Activate (G4bool activeFlag)
 
G4bool isActive () const
 
G4String GetName () const
 
G4String GetPathName () const
 
G4String GetFullPathName () const
 
G4VReadOutGeometryGetROgeometry () const
 
G4VSDFilterGetFilter () const
 
virtual G4VSensitiveDetectorClone () const
 

Additional Inherited Members

- Protected Member Functions inherited from G4VSensitiveDetector
virtual G4int GetCollectionID (G4int i)
 
- Protected Attributes inherited from G4VSensitiveDetector
G4CollectionNameVector collectionName
 
G4String SensitiveDetectorName
 
G4String thePathName
 
G4String fullPathName
 
G4int verboseLevel
 
G4bool active
 
G4VReadOutGeometryROgeometry
 
G4VSDFilterfilter
 

Detailed Description

Definition at line 42 of file G4HumanPhantomSD.hh.

Constructor & Destructor Documentation

G4HumanPhantomSD::G4HumanPhantomSD ( const G4String name,
const G4String hitsCollectionName 
)
G4HumanPhantomSD::~G4HumanPhantomSD ( )

Definition at line 43 of file G4HumanPhantomSD.cc.

44 {
45 }

Member Function Documentation

void G4HumanPhantomSD::EndOfEvent ( G4HCofThisEvent )
virtual

Reimplemented from G4VSensitiveDetector.

Definition at line 77 of file G4HumanPhantomSD.cc.

78 {
79 
80 // G4int NbHits = collection->entries();
81 // G4cout << "\n-------->Hits Collection: in this event they are " << NbHits
82 // << " hits in the tracker chambers: " << G4endl;
83 // for (G4int i=0;i<NbHits;i++) (*collection)[i]->Print();
84 }
void G4HumanPhantomSD::Initialize ( G4HCofThisEvent HCE)
virtual

Reimplemented from G4VSensitiveDetector.

Definition at line 47 of file G4HumanPhantomSD.cc.

References G4HCofThisEvent::AddHitsCollection(), G4VSensitiveDetector::collectionName, G4SDManager::GetCollectionID(), G4SDManager::GetSDMpointer(), and G4VSensitiveDetector::SensitiveDetectorName.

48 {
49  collection = new G4HumanPhantomHitsCollection
51  static G4int HCID = -1;
52  if(HCID<0)
53  {
55  HCE->AddHitsCollection( HCID, collection );
56 }
G4int GetCollectionID(G4String colName)
Definition: G4SDManager.cc:131
int G4int
Definition: G4Types.hh:78
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
static G4SDManager * GetSDMpointer()
Definition: G4SDManager.cc:40
G4CollectionNameVector collectionName
G4THitsCollection< G4HumanPhantomHit > G4HumanPhantomHitsCollection
G4bool G4HumanPhantomSD::ProcessHits ( G4Step aStep,
G4TouchableHistory  
)
virtual

Implements G4VSensitiveDetector.

Definition at line 58 of file G4HumanPhantomSD.cc.

References G4VPhysicalVolume::GetLogicalVolume(), G4LogicalVolume::GetName(), G4Step::GetPreStepPoint(), G4Step::GetTotalEnergyDeposit(), G4StepPoint::GetTouchable(), G4VTouchable::GetVolume(), G4THitsCollection< T >::insert(), G4HumanPhantomHit::SetBodyPartID(), and G4HumanPhantomHit::SetEdep().

59 {
60  G4double edep = aStep->GetTotalEnergyDeposit();
61 
62  if(edep==0.) return false;
63 
64  G4String bodypartName = aStep->GetPreStepPoint()->GetTouchable()
66 
67  // G4cout <<bodypartName <<":" << edep/MeV<< G4endl;
68 
69  G4HumanPhantomHit* newHit = new G4HumanPhantomHit();
70  newHit->SetEdep(edep);
71  newHit->SetBodyPartID(bodypartName);
72  collection->insert(newHit);
73 
74  return true;
75 }
G4String GetName() const
const G4VTouchable * GetTouchable() const
G4StepPoint * GetPreStepPoint() const
void SetEdep(G4double de)
void SetBodyPartID(G4String bodyPartName)
G4double GetTotalEnergyDeposit() const
G4LogicalVolume * GetLogicalVolume() const
virtual G4VPhysicalVolume * GetVolume(G4int depth=0) const
Definition: G4VTouchable.cc:44
double G4double
Definition: G4Types.hh:76

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