Geant4  10.02.p02
G4BiasingProcessSharedData.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 // $Id: $
27 //
28 //--------------------------------------------------------------------------
29 //
30 // G4BiasingProcessSharedData
31 //
32 // Class Description:
33 // This class represents the data that the G4BiasingProcessInterface
34 // objects attached to a same particle / hold by a same G4ProcessManager
35 // share. It allows the active G4BiasingProcessInterface objects to share
36 // information on operations that are common the these instances:
37 // - the current and previous G4VBiasingOperator objects (their
38 // pointers are collected once, at the beginning of the PostStepGPIL
39 // by the first interface invoked)
40 // - add the list of cooperating G4BiasingProcessInterface objects,
41 // acting on a same particle type.
42 // G4BiasingProcessInterface is friend class of this one.
43 //---------------------------------------------------------------------------
44 // Initial version Sep. 2014 M. Verderi
45 
46 #ifndef G4BiasingProcessSharedData_h
47 #define G4BiasingProcessSharedData_h
48 
49 #include "globals.hh"
50 #include <vector>
51 
52 class G4VBiasingOperator;
54 class G4ProcessManager;
55 
57 
59 
60 public:
61  // -------------------------
62  // -- Public access methods:
63  // -------------------------
64  // -- The biasing process interface objects sharing this shared data class:
65  const std::vector< const G4BiasingProcessInterface* >& GetBiasingProcessInterfaces() const
67  const std::vector< const G4BiasingProcessInterface* >& GetPhysicsBiasingProcessInterfaces() const
69  const std::vector< const G4BiasingProcessInterface* >& GetNonPhysicsBiasingProcessInterfaces() const
71 
72 
73 
74 private:
75  // -- Methods used by the G4BiasingProcessInterface objects, thanks to class friendness.
76  // -- Object is created by G4BiasingProcessInterface object:
78  : fProcessManager (mgr),
81  fIsNewOperator (true),
83  {}
85  // -- biasing operators:
90 
91 private:
92  // --
94  // -- biasing operators:
97  // --
100 
101  // -- biaising process interfaces sharing this object:
102  std::vector < G4BiasingProcessInterface* > fBiasingProcessInterfaces;
103  std::vector < G4BiasingProcessInterface* > fPhysicsBiasingProcessInterfaces;
104  std::vector < G4BiasingProcessInterface* > fNonPhysicsBiasingProcessInterfaces;
105  // -- the same ones, for public use:
106  std::vector < const G4BiasingProcessInterface* > fPublicBiasingProcessInterfaces;
107  std::vector < const G4BiasingProcessInterface* > fPublicPhysicsBiasingProcessInterfaces;
108  std::vector < const G4BiasingProcessInterface* > fPublicNonPhysicsBiasingProcessInterfaces;
109 
110 };
111 
112 #endif
std::vector< const G4BiasingProcessInterface * > fPublicBiasingProcessInterfaces
std::vector< G4BiasingProcessInterface * > fNonPhysicsBiasingProcessInterfaces
const std::vector< const G4BiasingProcessInterface * > & GetPhysicsBiasingProcessInterfaces() const
std::vector< G4BiasingProcessInterface * > fBiasingProcessInterfaces
const std::vector< const G4BiasingProcessInterface * > & GetBiasingProcessInterfaces() const
std::vector< G4BiasingProcessInterface * > fPhysicsBiasingProcessInterfaces
const std::vector< const G4BiasingProcessInterface * > & GetNonPhysicsBiasingProcessInterfaces() const
bool G4bool
Definition: G4Types.hh:79
std::vector< const G4BiasingProcessInterface * > fPublicNonPhysicsBiasingProcessInterfaces
G4VBiasingOperator * CurrentBiasingOperator() const
G4BiasingProcessSharedData(const G4ProcessManager *mgr)
const G4ProcessManager * fProcessManager
std::vector< const G4BiasingProcessInterface * > fPublicPhysicsBiasingProcessInterfaces
G4VBiasingOperator * fPreviousBiasingOperator
G4VBiasingOperator * PreviousBiasingOperator() const
G4VBiasingOperator * fCurrentBiasingOperator