All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Private Attributes | List of all members
larg4::SimEnergyDepositSD Class Reference

#include <SimEnergyDepositSD.h>

Inheritance diagram for larg4::SimEnergyDepositSD:

Public Member Functions

 SimEnergyDepositSD (G4String)
 
 ~SimEnergyDepositSD ()
 
void Initialize (G4HCofThisEvent *)
 
G4bool ProcessHits (G4Step *, G4TouchableHistory *)
 
const
sim::SimEnergyDepositCollection
GetHits () const
 

Private Attributes

sim::SimEnergyDepositCollection hitCollection
 

Detailed Description

Definition at line 19 of file SimEnergyDepositSD.h.

Constructor & Destructor Documentation

larg4::SimEnergyDepositSD::SimEnergyDepositSD ( G4String  name)

Definition at line 32 of file SimEnergyDepositSD.cc.

33 : G4VSensitiveDetector(name) {
34  hitCollection.clear();
35 }
sim::SimEnergyDepositCollection hitCollection
then echo fcl name
larg4::SimEnergyDepositSD::~SimEnergyDepositSD ( )

Definition at line 39 of file SimEnergyDepositSD.cc.

39  {
40 
41 }

Member Function Documentation

const sim::SimEnergyDepositCollection& larg4::SimEnergyDepositSD::GetHits ( ) const
inline

Definition at line 25 of file SimEnergyDepositSD.h.

25 { return hitCollection; }
sim::SimEnergyDepositCollection hitCollection
void larg4::SimEnergyDepositSD::Initialize ( G4HCofThisEvent *  HCE)

Definition at line 45 of file SimEnergyDepositSD.cc.

45  {
46  hitCollection.clear();
47  }
sim::SimEnergyDepositCollection hitCollection
G4bool larg4::SimEnergyDepositSD::ProcessHits ( G4Step *  aStep,
G4TouchableHistory *   
)

Definition at line 50 of file SimEnergyDepositSD.cc.

50  {
51  G4double edep = aStep->GetTotalEnergyDeposit()/CLHEP::MeV;
52 
53  if (edep == 0.) return false;
54  //std::cout << "7777777777777777: "<< aStep->GetTotalEnergyDeposit()/CLHEP::MeV << " " << aStep->GetTotalEnergyDeposit() <<std::endl;
55  const int electronsperMeV= 10000;
56  int nrelec=(int)round(edep*electronsperMeV);
57  if (aStep->GetTrack()->GetDynamicParticle()->GetCharge() == 0) return false;
58  G4int photons = 0;
59  G4SteppingManager* fpSteppingManager = G4EventManager::GetEventManager()
60  ->GetTrackingManager()->GetSteppingManager();
61  G4StepStatus stepStatus = fpSteppingManager->GetfStepStatus();
62  if (stepStatus != fAtRestDoItProc) {
63  G4ProcessVector* procPost = fpSteppingManager->GetfPostStepDoItVector();
64  size_t MAXofPostStepLoops = fpSteppingManager->GetMAXofPostStepLoops();
65  for (size_t i3 = 0; i3 < MAXofPostStepLoops; i3++) {
66  if (!(*procPost)[i3]) continue;
67  /*
68  if ((*procPost)[i3]->GetProcessName() == "Cerenkov") {
69  G4Cerenkov* proc =(G4Cerenkov*) (*procPost)[i3];
70  photons+=proc->GetNumPhotons();
71  }
72  */
73  if ((*procPost)[i3]->GetProcessName() == "Scintillation") {
74  G4Scintillation* proc1 = (G4Scintillation*) (*procPost)[i3];
75  photons += proc1->GetNumPhotons();
76  }
77  }
78  }
79  geo::Point_t start = geo::Point_t(
80  aStep->GetPreStepPoint()->GetPosition().x()/CLHEP::cm,
81  aStep->GetPreStepPoint()->GetPosition().y()/CLHEP::cm,
82  aStep->GetPreStepPoint()->GetPosition().z()/CLHEP::cm);
84  aStep->GetPostStepPoint()->GetPosition().x()/CLHEP::cm,
85  aStep->GetPostStepPoint()->GetPosition().y()/CLHEP::cm,
86  aStep->GetPostStepPoint()->GetPosition().z()/CLHEP::cm);
88  nrelec,
89  1.0,
90  edep,
91  start,
92  end,
93  aStep->GetPreStepPoint()->GetGlobalTime() / CLHEP::ns,
94  aStep->GetPostStepPoint()->GetGlobalTime() /CLHEP::ns,
95  aStep->GetTrack()->GetTrackID(),
96  aStep->GetTrack()->GetParticleDefinition()->GetPDGEncoding() );
97  hitCollection.push_back(newHit);
98  return true;
99  }// end ProcessHits
sim::SimEnergyDepositCollection hitCollection
util::quantities::megaelectronvolt MeV
auto end(FixedBins< T, C > const &) noexcept
Definition: FixedBins.h:585
Energy deposition in the active material.
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Point_t
Type for representation of position in physical 3D space.
Definition: geo_vectors.h:184

Member Data Documentation

sim::SimEnergyDepositCollection larg4::SimEnergyDepositSD::hitCollection
private

Definition at line 27 of file SimEnergyDepositSD.h.


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