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

#include <ExN04TrackerSD.hh>

Inheritance diagram for ExN04TrackerSD:
G4VSensitiveDetector G4VSensitiveDetector

Public Member Functions

 ExN04TrackerSD (G4String name)
 
 ~ExN04TrackerSD ()
 
void Initialize (G4HCofThisEvent *HCE)
 
G4bool ProcessHits (G4Step *aStep, G4TouchableHistory *ROhist)
 
void EndOfEvent (G4HCofThisEvent *HCE)
 
void clear ()
 
void DrawAll ()
 
void PrintAll ()
 
 ExN04TrackerSD (G4String name)
 
 ~ExN04TrackerSD ()
 
void Initialize (G4HCofThisEvent *HCE)
 
G4bool ProcessHits (G4Step *aStep, G4TouchableHistory *ROhist)
 
void EndOfEvent (G4HCofThisEvent *HCE)
 
void clear ()
 
void DrawAll ()
 
void PrintAll ()
 
- 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
 
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 eventgenerator/HepMC/HepMCEx01/include/ExN04TrackerSD.hh.

Constructor & Destructor Documentation

ExN04TrackerSD::ExN04TrackerSD ( G4String  name)
ExN04TrackerSD::~ExN04TrackerSD ( )

Definition at line 47 of file eventgenerator/HepMC/HepMCEx01/src/ExN04TrackerSD.cc.

47 {;}
ExN04TrackerSD::ExN04TrackerSD ( G4String  name)
ExN04TrackerSD::~ExN04TrackerSD ( )

Member Function Documentation

void ExN04TrackerSD::clear ( void  )
virtual

Reimplemented from G4VSensitiveDetector.

Definition at line 80 of file eventgenerator/HepMC/HepMCEx01/src/ExN04TrackerSD.cc.

81 {
82 }
void ExN04TrackerSD::clear ( )
virtual

Reimplemented from G4VSensitiveDetector.

void ExN04TrackerSD::DrawAll ( void  )
virtual

Reimplemented from G4VSensitiveDetector.

Definition at line 85 of file eventgenerator/HepMC/HepMCEx01/src/ExN04TrackerSD.cc.

86 {
87 }
void ExN04TrackerSD::DrawAll ( )
virtual

Reimplemented from G4VSensitiveDetector.

void ExN04TrackerSD::EndOfEvent ( G4HCofThisEvent HCE)
virtual

Reimplemented from G4VSensitiveDetector.

Definition at line 75 of file eventgenerator/HepMC/HepMCEx01/src/ExN04TrackerSD.cc.

76 {
77 }
void ExN04TrackerSD::EndOfEvent ( G4HCofThisEvent HCE)
virtual

Reimplemented from G4VSensitiveDetector.

void ExN04TrackerSD::Initialize ( G4HCofThisEvent HCE)
virtual

Reimplemented from G4VSensitiveDetector.

Definition at line 50 of file eventgenerator/HepMC/HepMCEx01/src/ExN04TrackerSD.cc.

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

51 {
52  static int HCID = -1;
53  trackerCollection = new ExN04TrackerHitsCollection
55  if(HCID<0)
56  { HCID = GetCollectionID(0); }
57  HCE->AddHitsCollection(HCID,trackerCollection);
58 }
G4THitsCollection< ExN04TrackerHit > ExN04TrackerHitsCollection
virtual G4int GetCollectionID(G4int i)
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
G4CollectionNameVector collectionName
void ExN04TrackerSD::Initialize ( G4HCofThisEvent HCE)
virtual

Reimplemented from G4VSensitiveDetector.

void ExN04TrackerSD::PrintAll ( void  )
virtual

Reimplemented from G4VSensitiveDetector.

Definition at line 90 of file eventgenerator/HepMC/HepMCEx01/src/ExN04TrackerSD.cc.

91 {
92 }
void ExN04TrackerSD::PrintAll ( )
virtual

Reimplemented from G4VSensitiveDetector.

G4bool ExN04TrackerSD::ProcessHits ( G4Step aStep,
G4TouchableHistory ROhist 
)
virtual

Implements G4VSensitiveDetector.

Definition at line 61 of file eventgenerator/HepMC/HepMCEx01/src/ExN04TrackerSD.cc.

References G4StepPoint::GetPosition(), G4Step::GetPreStepPoint(), G4Step::GetTotalEnergyDeposit(), G4THitsCollection< T >::insert(), ExN04TrackerHit::SetEdep(), and ExN04TrackerHit::SetPos().

62 {
63  G4double edep = aStep->GetTotalEnergyDeposit();
64  if(edep==0.) return false;
65 
66  ExN04TrackerHit* newHit = new ExN04TrackerHit();
67  newHit->SetEdep( edep );
68  newHit->SetPos( aStep->GetPreStepPoint()->GetPosition() );
69  trackerCollection->insert( newHit );
70 
71  return true;
72 }
G4StepPoint * GetPreStepPoint() const
const G4ThreeVector & GetPosition() const
G4double GetTotalEnergyDeposit() const
double G4double
Definition: G4Types.hh:76
G4bool ExN04TrackerSD::ProcessHits ( G4Step aStep,
G4TouchableHistory ROhist 
)
virtual

Implements G4VSensitiveDetector.


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