Import Geant4 1.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:28:20 +02:00
parent aaa409b6ee
commit ca1c8cb059
2995 changed files with 106830 additions and 299600 deletions
@@ -0,0 +1,30 @@
#ifndef PersEx01TrackerSD_h
#define PersEx01TrackerSD_h 1
#include "G4VSensitiveDetector.hh"
#include "PersEx01TrackerHit.hh"
#include "G4Step.hh"
class PersEx01TrackerSD : public G4VSensitiveDetector
{
public:
PersEx01TrackerSD(G4String name);
~PersEx01TrackerSD();
void Initialize(G4HCofThisEvent*HCE);
G4bool ProcessHits(G4Step*aStep,G4TouchableHistory*ROhist);
void EndOfEvent(G4HCofThisEvent*HCE);
void clear();
void DrawAll();
void PrintAll();
private:
PersEx01TrackerHitsCollection *EvenCollection;
PersEx01TrackerHitsCollection *OddCollection;
};
#endif