| 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | // $Id: RunAction.hh,v 1.1 2007/08/16 10:32:04 vnivanch Exp $
|
|---|
| 27 | // GEANT4 tag $Name: $
|
|---|
| 28 | //
|
|---|
| 29 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 30 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 31 |
|
|---|
| 32 | #ifndef RunAction_h
|
|---|
| 33 | #define RunAction_h 1
|
|---|
| 34 |
|
|---|
| 35 | #include "G4UserRunAction.hh"
|
|---|
| 36 | #include "globals.hh"
|
|---|
| 37 | #include "QGSP.hh"
|
|---|
| 38 |
|
|---|
| 39 | class DetectorConstruction;
|
|---|
| 40 | class RunActionMessenger;
|
|---|
| 41 | class PrimaryGeneratorAction;
|
|---|
| 42 | class G4Run;
|
|---|
| 43 |
|
|---|
| 44 | namespace AIDA {
|
|---|
| 45 | class IAnalysisFactory;
|
|---|
| 46 | class ITree;
|
|---|
| 47 | class IHistogram1D;
|
|---|
| 48 | }
|
|---|
| 49 |
|
|---|
| 50 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 51 |
|
|---|
| 52 | class RunAction : public G4UserRunAction
|
|---|
| 53 | {
|
|---|
| 54 | public:
|
|---|
| 55 | RunAction(DetectorConstruction* ,PrimaryGeneratorAction*);
|
|---|
| 56 | virtual ~RunAction();
|
|---|
| 57 |
|
|---|
| 58 | void BeginOfRunAction(const G4Run*);
|
|---|
| 59 | void EndOfRunAction(const G4Run*);
|
|---|
| 60 |
|
|---|
| 61 | G4double GetBinLength() {return binLength;};
|
|---|
| 62 | G4double GetOffsetX() {return offsetX;}
|
|---|
| 63 | void SetBinSize(G4double size);
|
|---|
| 64 | void FillHisto(G4int id, G4double x, G4double weight = 1.0);
|
|---|
| 65 |
|
|---|
| 66 | void SetVerbose(G4int verbose) {verboseLevel = verbose;}
|
|---|
| 67 | void SetHistoName(G4String name) {fname = name;}
|
|---|
| 68 | void SetHistoType(G4String type) {ftype = type;}
|
|---|
| 69 | G4int GetVerbose() {return verboseLevel;}
|
|---|
| 70 |
|
|---|
| 71 | void AddProjRange (G4double x) {projRange += x; projRange2 += x*x;};
|
|---|
| 72 |
|
|---|
| 73 | private:
|
|---|
| 74 | void bookHisto();
|
|---|
| 75 | void saveHisto();
|
|---|
| 76 |
|
|---|
| 77 | DetectorConstruction* detector;
|
|---|
| 78 | PrimaryGeneratorAction* kinematic;
|
|---|
| 79 |
|
|---|
| 80 | RunActionMessenger* runActionMessenger;
|
|---|
| 81 |
|
|---|
| 82 | G4int verboseLevel;
|
|---|
| 83 |
|
|---|
| 84 | G4double binLength;
|
|---|
| 85 | G4double offsetX;
|
|---|
| 86 | G4double projRange, projRange2;
|
|---|
| 87 | G4String ftype, fname;
|
|---|
| 88 |
|
|---|
| 89 |
|
|---|
| 90 | AIDA::IAnalysisFactory* af;
|
|---|
| 91 | AIDA::ITree* tree;
|
|---|
| 92 | AIDA::IHistogram1D* histo[5];
|
|---|
| 93 | };
|
|---|
| 94 |
|
|---|
| 95 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 96 |
|
|---|
| 97 | #endif
|
|---|
| 98 |
|
|---|