Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4INCLBook.hh
Go to the documentation of this file.
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 // INCL++ intra-nuclear cascade model
27 // Pekka Kaitaniemi, CEA and Helsinki Institute of Physics
28 // Davide Mancusi, CEA
29 // Alain Boudard, CEA
30 // Sylvie Leray, CEA
31 // Joseph Cugnon, University of Liege
32 //
33 #define INCLXX_IN_GEANT4_MODE 1
34 
35 #include "globals.hh"
36 
37 #ifndef G4INCLBook_hh
38 #define G4INCLBook_hh 1
39 
40 #include <map>
41 #include "G4INCLIAvatar.hh"
42 
43 namespace G4INCL {
44  class Book {
45  public:
46  Book() {
47  reset();
48  }
49  ~Book() {};
50 
51  void reset() {
52  nAcceptedCollisions = 0;
53  nBlockedCollisions = 0;
54  nAcceptedDecays = 0;
55  nBlockedDecays = 0;
56  currentTime = 0.0;
57  firstCollisionTime = 0.0;
58  firstCollisionXSec = 0.0;
59  nAvatars[SurfaceAvatarType] = 0;
60  nAvatars[CollisionAvatarType] = 0;
61  nAvatars[DecayAvatarType] = 0;
62  nAvatars[ParticleEntryAvatarType] = 0;
63  nCascading = 0;
64  };
65 
66  void incrementAcceptedCollisions() { nAcceptedCollisions++; };
67  void incrementBlockedCollisions() { nBlockedCollisions++; };
68  void incrementAcceptedDecays() { nAcceptedDecays++; };
69  void incrementBlockedDecays() { nBlockedDecays++; };
70  void incrementAvatars(AvatarType type) { nAvatars[type]++; };
71  void incrementCascading() { nCascading++; }
72  void decrementCascading() { nCascading--; }
73 
74  void setFirstCollisionTime(G4double t) { firstCollisionTime = t; };
75  G4double getFirstCollisionTime() { return firstCollisionTime; };
76 
77  void setFirstCollisionXSec(G4double x) { firstCollisionXSec = x; };
78  G4double getFirstCollisionXSec() { return firstCollisionXSec; };
79 
80  void setCurrentTime(G4double t) { currentTime = t; };
81  G4double getCurrentTime() { return currentTime; };
82 
83  G4int getAcceptedCollisions() const { return nAcceptedCollisions; };
84  G4int getBlockedCollisions() const {return nBlockedCollisions; };
85  G4int getAcceptedDecays() const { return nAcceptedDecays; };
86  G4int getBlockedDecays() const {return nBlockedDecays; };
87  G4int getAvatars(AvatarType type) const { return nAvatars.find(type)->second; };
88  G4int getCascading() const { return nCascading; };
89 
90  private:
91  G4int nAcceptedCollisions;
92  G4int nBlockedCollisions;
93  G4int nAcceptedDecays;
94  G4int nBlockedDecays;
95  G4double currentTime;
96  G4double firstCollisionTime;
97  G4double firstCollisionXSec;
98  std::map<AvatarType,G4int> nAvatars;
99  G4int nCascading;
100  };
101 }
102 
103 #endif