|
Last change
on this file since 286 was 286, checked in by campagne, 19 years ago |
|
ELYSE sauvegarde provisoire (JEC)
|
|
File size:
504 bytes
|
| Line | |
|---|
| 1 | #ifndef ELYSEStackingAction_H
|
|---|
| 2 | #define ELYSEStackingAction_H 1
|
|---|
| 3 |
|
|---|
| 4 | //Geant4
|
|---|
| 5 | #include "globals.hh"
|
|---|
| 6 | #include "G4UserStackingAction.hh"
|
|---|
| 7 |
|
|---|
| 8 | class G4Track;
|
|---|
| 9 |
|
|---|
| 10 | namespace ELYSE {
|
|---|
| 11 |
|
|---|
| 12 | class StackingAction : public G4UserStackingAction {
|
|---|
| 13 |
|
|---|
| 14 | public:
|
|---|
| 15 | StackingAction();
|
|---|
| 16 | virtual ~StackingAction();
|
|---|
| 17 |
|
|---|
| 18 | public:
|
|---|
| 19 | virtual G4ClassificationOfNewTrack ClassifyNewTrack(const G4Track* aTrack);
|
|---|
| 20 | virtual void NewStage();
|
|---|
| 21 | virtual void PrepareNewEvent();
|
|---|
| 22 |
|
|---|
| 23 | private:
|
|---|
| 24 | G4int gammaCounter;
|
|---|
| 25 | G4int stage;
|
|---|
| 26 | };
|
|---|
| 27 | }
|
|---|
| 28 | #endif
|
|---|
| 29 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.