Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4PreCompoundFragmentVector.hh
이 파일의 문서화 페이지로 가기
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: G4PreCompoundFragmentVector.hh 108685 2018-02-27 07:58:38Z gcosmo $
27 //
28 // Hadronic Process: Nuclear Preequilibrium
29 // by V. Lara
30 //
31 // Modified:
32 // 03.09.2008 by J. M. Quesada for external choice of inverse
33 // cross section option
34 // 06.09.2008 JMQ Also external choice has been added for:
35 // - superimposed Coulomb barrier (if useSICB=true)
36 // 27.08.2010 V.Ivanchenko simplify and make more efficient by adding extra
37 // vector of probabilities, moved constructor and destructor to source,
38 // simplify run time computations making inlined
39 //
40 
41 #ifndef G4PreCompoundFragmentVector_h
42 #define G4PreCompoundFragmentVector_h 1
43 
45 #include "G4DataVector.hh"
46 #include "Randomize.hh"
47 #include "globals.hh"
48 #include <vector>
49 
50 typedef std::vector<G4VPreCompoundFragment*> pcfvector;
51 
53 {
54 public:
55 
56  explicit G4PreCompoundFragmentVector(pcfvector * avector);
57 
58  ~G4PreCompoundFragmentVector() = default;
59 
60  void SetVector(pcfvector * avector);
61 
62  void SetOPTxs(G4int);
63 
64  void UseSICB(G4bool);
65 
66  G4double CalculateProbabilities(const G4Fragment & aFragment);
67 
69 
70 private:
71 
74  operator=(const G4PreCompoundFragmentVector &right) = delete;
75  G4bool operator==(const G4PreCompoundFragmentVector &right) const = delete;
76  G4bool operator!=(const G4PreCompoundFragmentVector &right) const = delete;
77 
80 
82 };
83 
84 #endif
85 
const G4PreCompoundFragmentVector & operator=(const G4PreCompoundFragmentVector &right)=delete
double G4double
Definition: G4Types.hh:76
bool G4bool
Definition: G4Types.hh:79
~G4PreCompoundFragmentVector()=default
G4bool operator==(const G4PreCompoundFragmentVector &right) const =delete
G4bool operator!=(const G4PreCompoundFragmentVector &right) const =delete
std::vector< G4VPreCompoundFragment * > pcfvector
int G4int
Definition: G4Types.hh:78
G4double CalculateProbabilities(const G4Fragment &aFragment)
G4VPreCompoundFragment * ChooseFragment()