Geant4  10.02
G4VBiasingOperator.cc
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 #include "G4VBiasingOperator.hh"
27 #include "G4VBiasingOperation.hh"
28 #include "G4VParticleChange.hh"
29 
30 
34 
35 
37  : fName(name)
38 {
39  fOperators.Push_back(this);
40 
42 
43 }
44 
46 {
47 }
48 
50 {
52  it = fLogicalToSetupMap.Find(logical);
53  if ( it == fLogicalToSetupMap.End() ) fLogicalToSetupMap[logical] = this;
54  else if ( (*it).second != this )
55  {
57  ed << "Biasing operator `" << GetName()
58  << "' can not be attached to Logical volume `"
59  << logical->GetName() << "' which is already used by an other operator !" << G4endl;
60  G4Exception("G4VBiasingOperator::AttachTo(...)",
61  "BIAS.MNG.01",
63  ed);
64  }
65 }
66 
67 
69 {
71  it = fLogicalToSetupMap.Find(logical);
72  if ( it == fLogicalToSetupMap.End() ) return 0;
73  else return (*it).second;
74 }
75 
77 {
80 }
81 
83 {
86 }
87 
89 {
92 }
93 
95  G4BiasingAppliedCase biasingCase,
96  G4VBiasingOperation* operationApplied,
97  const G4VParticleChange* particleChangeProduced )
98 {
99  fPreviousBiasingAppliedCase = biasingCase;
103  switch ( biasingCase )
104  {
105  case BAC_None:
106  break;
107  case BAC_NonPhysics:
108  fPreviousAppliedNonPhysicsBiasingOperation = operationApplied ;
109  break;
110  case BAC_DenyInteraction: // -- ยงยง will b deprecated
112  break;
113  case BAC_FinalState:
115  break;
116  case BAC_Occurence:
117  G4Exception("G4VBiasingOperator::ReportOperationApplied(...)",
118  "BIAS.MNG.02",
119  JustWarning,
120  "Internal logic error, please report !");
121  break;
122  default:
123  G4Exception("G4VBiasingOperator::ReportOperationApplied(...)",
124  "BIAS.MNG.03",
125  JustWarning,
126  "Internal logic error, please report !");
127  }
128  OperationApplied( callingProcess, biasingCase, operationApplied, particleChangeProduced );
129 }
130 
132  G4BiasingAppliedCase biasingCase,
133  G4VBiasingOperation* occurenceOperationApplied,
134  G4double weightForOccurenceInteraction,
135  G4VBiasingOperation* finalStateOperationApplied,
136  const G4VParticleChange* particleChangeProduced )
137 {
138  fPreviousBiasingAppliedCase = biasingCase;
139  fPreviousAppliedOccurenceBiasingOperation = occurenceOperationApplied;
140  fPreviousAppliedFinalStateBiasingOperation = finalStateOperationApplied;
141  OperationApplied( callingProcess, biasingCase, occurenceOperationApplied, weightForOccurenceInteraction, finalStateOperationApplied, particleChangeProduced );
142 }
143 
144 
145 void G4VBiasingOperator::ExitingBiasing( const G4Track* track, const G4BiasingProcessInterface* callingProcess )
146 {
147  ExitBiasing( track, callingProcess );
148 
149  // -- reset all data members:
160 }
161 
162 
163 // -- dummy empty implementations to allow letting arguments visible in the .hh
164 // -- but avoiding annoying warning messages about unused variables
165 // -- methods to inform operator that its biasing control is over:
167 {}
170 {
171 }
175 {
176 }
177 
178 
179 // ----------------------------------------------------------------------------
180 // -- state machine to get biasing operators messaged at the beginning of runs:
181 // ----------------------------------------------------------------------------
182 
185 {
187 }
188 
190 {}
191 
193 {
194  if ( ( fPreviousState == G4State_Idle ) && ( requestedState == G4State_GeomClosed ) )
195  {
196  for ( size_t i = 0 ; i < G4VBiasingOperator::fOperators.Size() ; i++ ) G4VBiasingOperator::fOperators[i]->StartRun();
197  }
198 
199  fPreviousState = requestedState;
200 
201  return true;
202 }
const G4VBiasingOperation * fPreviousProposedOccurenceBiasingOperation
G4VBiasingOperation * GetProposedFinalStateBiasingOperation(const G4Track *track, const G4BiasingProcessInterface *callingProcess)
virtual void OperationApplied(const G4BiasingProcessInterface *callingProcess, G4BiasingAppliedCase biasingCase, G4VBiasingOperation *operationApplied, const G4VParticleChange *particleChangeProduced)
std::ostringstream G4ExceptionDescription
Definition: globals.hh:76
iterator End()
Definition: G4Cache.hh:411
G4String fName
Definition: G4AttUtils.hh:55
size_type Size()
Definition: G4Cache.hh:159
G4String name
Definition: TRTMaterials.hh:40
value_type & Get() const
Definition: G4Cache.hh:282
G4BiasingAppliedCase fPreviousBiasingAppliedCase
G4VBiasingOperation * GetProposedOccurenceBiasingOperation(const G4Track *track, const G4BiasingProcessInterface *callingProcess)
virtual G4VBiasingOperation * ProposeFinalStateBiasingOperation(const G4Track *track, const G4BiasingProcessInterface *callingProcess)=0
G4bool Notify(G4ApplicationState requestedState)
virtual void ExitBiasing(const G4Track *track, const G4BiasingProcessInterface *callingProcess)
G4BiasingAppliedCase
const G4VBiasingOperation * fPreviousAppliedOccurenceBiasingOperation
static G4VectorCache< G4VBiasingOperator * > fOperators
static G4MapCache< const G4LogicalVolume *, G4VBiasingOperator * > fLogicalToSetupMap
bool G4bool
Definition: G4Types.hh:79
virtual G4VBiasingOperation * ProposeOccurenceBiasingOperation(const G4Track *track, const G4BiasingProcessInterface *callingProcess)=0
const G4VBiasingOperation * fPreviousAppliedNonPhysicsBiasingOperation
const G4VBiasingOperation * fPreviousProposedFinalStateBiasingOperation
void AttachTo(const G4LogicalVolume *)
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41
const G4VBiasingOperation * fPreviousAppliedFinalStateBiasingOperation
virtual G4VBiasingOperation * ProposeNonPhysicsBiasingOperation(const G4Track *track, const G4BiasingProcessInterface *callingProcess)=0
static G4VBiasingOperator * GetBiasingOperator(const G4LogicalVolume *)
void Push_back(const value_type &val)
Definition: G4Cache.hh:333
iterator Find(const key_type &k)
Definition: G4Cache.hh:417
G4VBiasingOperator(G4String name)
G4VBiasingOperation * fFinalStateBiasingOperation
#define G4endl
Definition: G4ios.hh:61
static G4Cache< G4BiasingOperatorStateNotifier * > fStateNotifier
G4VBiasingOperation * fOccurenceBiasingOperation
const G4String & GetName() const
double G4double
Definition: G4Types.hh:76
void ReportOperationApplied(const G4BiasingProcessInterface *callingProcess, G4BiasingAppliedCase biasingCase, G4VBiasingOperation *operationApplied, const G4VParticleChange *particleChangeProduced)
const G4VBiasingOperation * fPreviousProposedNonPhysicsBiasingOperation
G4VBiasingOperation * GetProposedNonPhysicsBiasingOperation(const G4Track *track, const G4BiasingProcessInterface *callingProcess)
void ExitingBiasing(const G4Track *track, const G4BiasingProcessInterface *callingProcess)
void Put(const value_type &val) const
Definition: G4Cache.hh:286
G4VBiasingOperation * fNonPhysicsBiasingOperation
G4ApplicationState
const G4String GetName() const