Import Geant4 11.3.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2024-06-28 13:08:51 +02:00
parent f7b23877ed
commit e58e650b32
5232 changed files with 239416 additions and 244360 deletions
@@ -28,8 +28,9 @@
#ifndef SensitiveDetector_h
#define SensitiveDetector_h 1
#include "G4VSensitiveDetector.hh"
#include "SensitiveDetectorHit.hh"
#include "G4VSensitiveDetector.hh"
class G4Step;
class G4HCofThisEvent;
class G4TouchableHistory;
@@ -37,16 +38,16 @@ class G4TouchableHistory;
class SensitiveDetector : public G4VSensitiveDetector
{
public:
SensitiveDetector(G4String name);
virtual ~SensitiveDetector();
SensitiveDetector(G4String name);
virtual ~SensitiveDetector();
virtual void Initialize(G4HCofThisEvent*HCE);
virtual G4bool ProcessHits(G4Step*aStep,G4TouchableHistory*ROhist);
virtual void EndOfEvent(G4HCofThisEvent*HCE);
virtual void Initialize(G4HCofThisEvent* HCE);
virtual G4bool ProcessHits(G4Step* aStep, G4TouchableHistory* ROhist);
virtual void EndOfEvent(G4HCofThisEvent* HCE);
private:
SensitiveDetectorHitsCollection * fHitsCollection;
G4int fHCID;
SensitiveDetectorHitsCollection* fHitsCollection;
G4int fHCID;
};
#endif