source: trunk/source/processes/cuts/include/G4ProductionCuts.hh @ 1007

Last change on this file since 1007 was 1007, checked in by garnier, 15 years ago

update to geant4.9.2

File size: 5.7 KB
Line 
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//
27// $Id: G4ProductionCuts.hh,v 1.4 2006/06/29 19:29:48 gunter Exp $
28// GEANT4 tag $Name: geant4-09-02 $
29//
30//
31// ------------------------------------------------------------
32//      GEANT 4 class header file
33//
34//
35// Class Description
36//  This class is
37//
38// ------------------------------------------------------------
39//   First Implementation          17 Sep. 2002  H.Kurahige
40// ------------------------------------------------------------
41
42#ifndef G4ProductionCuts_h
43#define G4ProductionCuts_h 1
44
45#include "globals.hh"
46#include "G4ios.hh"
47#include <vector>
48#include "G4ParticleDefinition.hh"
49
50enum G4ProductionCutsIndex
51{
52  idxG4GammaCut =0,
53  idxG4ElectronCut,
54  idxG4PositronCut,
55
56  NumberOfG4CutIndex
57};
58
59class G4ProductionCuts 
60{
61  public: // with description
62  //  constructor
63  G4ProductionCuts();
64
65  //  copy constructor
66  G4ProductionCuts(const G4ProductionCuts &right);
67
68  G4ProductionCuts & operator=(const G4ProductionCuts &right);
69
70  public: 
71  //  destructor
72  virtual ~G4ProductionCuts();
73
74  // equal opperators
75  G4int operator==(const G4ProductionCuts &right) const;
76  G4int operator!=(const G4ProductionCuts &right) const;
77
78  public: // with description
79  // Set Cuts methods
80  void              SetProductionCut(G4double cut, G4int index = -1);
81  void              SetProductionCut(G4double cut, G4ParticleDefinition* ptcl);
82  void              SetProductionCut(G4double cut, const G4String& pName);
83  // Set the productionCut in range with an index to particle type
84  // if index is omitted, the value is applied to all particles
85
86  G4double          GetProductionCut(G4int index) const;
87  // Get the productionCut in range with an index to particle type
88
89  G4double          GetProductionCut(const G4String& name) const;
90  // Get the productionCut in range with a name of particle type
91 
92  void              SetProductionCuts(std::vector<G4double>&);
93  // Set the vector of production cuts in range for all particles
94
95  const std::vector<G4double>&   GetProductionCuts() const;
96  // Get the vector of production cuts in range for all particles
97
98  G4bool           IsModified() const;
99  // return true if any cut value has been modified
100  // after last calculation of PhysicsTable         
101
102  void             PhysicsTableUpdated();
103  // inform end of calculation of PhysicsTable  to ProductionCut
104 
105  public:
106  static G4int GetIndex(const G4String& name);
107  static G4int GetIndex(const G4ParticleDefinition* ptcl);
108
109  protected:
110  std::vector<G4double>         fRangeCuts;
111  G4bool                          isModified;
112
113  private:
114  static const G4ParticleDefinition* gammaDef;
115  static const G4ParticleDefinition* electDef;
116  static const G4ParticleDefinition* positDef;
117};
118
119
120inline
121void  G4ProductionCuts::SetProductionCut(G4double cut, G4int index)
122{
123  if (index<0) {
124    for(G4int i = 0; i < NumberOfG4CutIndex; i++) {
125      fRangeCuts[i] = cut;
126    }
127    isModified = true;
128
129  } else if (index < NumberOfG4CutIndex) {
130    fRangeCuts[index] = cut;
131    isModified = true;
132  }     
133}
134
135inline 
136void  G4ProductionCuts::SetProductionCut(G4double cut, G4ParticleDefinition* ptcl)
137{
138  G4int idx = -1;
139  if(ptcl) idx = GetIndex(ptcl);
140  if(idx>=0) SetProductionCut(cut,idx);
141}
142
143inline
144void  G4ProductionCuts::SetProductionCut(G4double cut, const G4String& pName)
145{
146  G4int idx = GetIndex(pName);
147  if(idx>=0) SetProductionCut(cut,idx);
148}
149
150inline
151G4double  G4ProductionCuts::GetProductionCut(G4int index) const
152{
153  G4double cut=-1.0;
154  if ( (index>=0) && (index<NumberOfG4CutIndex) ) {
155    cut = fRangeCuts[index]; 
156  }
157  return cut;
158}
159
160inline
161G4double  G4ProductionCuts::GetProductionCut(const G4String& name) const
162{
163  return GetProductionCut(GetIndex(name)); 
164}
165
166inline
167void  G4ProductionCuts::SetProductionCuts(std::vector<G4double>& cut)
168{
169  for(G4int i = 0; (i<NumberOfG4CutIndex); i++) {
170    fRangeCuts[i] = cut[i];
171  }
172  isModified = true;
173}
174
175inline
176const std::vector<G4double>&   G4ProductionCuts::GetProductionCuts() const
177{
178  return fRangeCuts;
179}
180
181inline
182G4bool  G4ProductionCuts::IsModified() const
183{
184  return isModified;
185}
186
187inline
188void   G4ProductionCuts::PhysicsTableUpdated()
189{
190  isModified = false;
191}
192
193#endif
194
195
196
197
198
199
200
201
202
203
204
Note: See TracBrowser for help on using the repository browser.