Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4ImportanceConfigurator.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 //
27 // $Id: G4ImportanceConfigurator.cc 78011 2013-12-02 11:32:48Z gcosmo $
28 //
29 // ----------------------------------------------------------------------
30 // Class G4ImportanceConfigurator
31 //
32 // Author: Michael Dressel (Michael.Dressel@cern.ch)
33 // ----------------------------------------------------------------------
34 
36 
37 #include "G4ImportanceProcess.hh"
38 #include "G4ProcessPlacer.hh"
39 #include "G4ImportanceAlgorithm.hh"
40 
42 
45  const G4String &particlename,
46  G4VIStore &istore,
47  const G4VImportanceAlgorithm *ialg, G4bool para)
48  : fWorld(worldvolume),
49  fWorldName(worldvolume->GetName()),
50  fPlacer(particlename),
51  fIStore(istore),
52  fDeleteIalg( ( ! ialg) ),
53  fIalgorithm(( (fDeleteIalg) ?
54  new G4ImportanceAlgorithm : ialg)),
55  fImportanceProcess(0),
56  paraflag(para)
57 {;}
58 
61  const G4String &particlename,
62  G4VIStore &istore,
63  const G4VImportanceAlgorithm *ialg, G4bool para)
64 : fWorldName(worldvolumeName),
65  fPlacer(particlename),
66  fIStore(istore),
67  fDeleteIalg( ( ! ialg) ),
68  fIalgorithm(( (fDeleteIalg) ?
69  new G4ImportanceAlgorithm : ialg)),
70  fImportanceProcess(0),
71  paraflag(para)
72 {
74  if(paraflag) fWorld = G4TransportationManager::GetTransportationManager()->GetParallelWorld(fWorldName);
75 }
76 
78 {
79  if (fImportanceProcess)
80  {
81  fPlacer.RemoveProcess(fImportanceProcess);
82  delete fImportanceProcess;
83  }
84  if (fDeleteIalg)
85  {
86  delete fIalgorithm;
87  }
88 }
89 
90 void
92 {
93  G4cout << "G4ImportanceConfigurator:: entering importance configure, paraflag " << paraflag << G4endl;
94  const G4VTrackTerminator *terminator = 0;
95  if (preConf)
96  {
97  terminator = preConf->GetTrackTerminator();
98  };
99 
100  fImportanceProcess =
101  new G4ImportanceProcess(*fIalgorithm,
102  fIStore,
103  terminator,"ImportanceProcess",paraflag);
104  if (!fImportanceProcess)
105  {
106  G4Exception("G4ImportanceConfigurator::Configure()",
107  "FatalError", FatalException,
108  "Failed allocation of G4ImportanceProcess !");
109  }
110 
111  // G4cout << "G4ImportanceConfigurator:: setting parallel World " << paraflag << G4endl;
112  if(paraflag) fImportanceProcess->SetParallelWorld(fWorld->GetName());
113  // if(paraflag) fImportanceProcess->SetParallelWorld(fWorldName);
114  // G4cout << "G4ImportanceConfigurator:: set " << paraflag << " name: " << fWorld->GetName() << G4endl;
115  // getchar();
116 
117  fPlacer.AddProcessAsSecondDoIt(fImportanceProcess);
118 }
119 
122 {
123  return fImportanceProcess;
124 }
125 
127 {
128  fWorldName = name;
129 }
void SetParallelWorld(G4String parallelWorldName)
virtual void Configure(G4VSamplerConfigurator *preConf)
G4Navigator * GetNavigatorForTracking() const
const XML_Char * name
virtual void AddProcessAsSecondDoIt(G4VProcess *process)
G4ImportanceConfigurator(const G4VPhysicalVolume *worldvolume, const G4String &particlename, G4VIStore &istore, const G4VImportanceAlgorithm *ialg, G4bool paraflag)
virtual void RemoveProcess(G4VProcess *process)
virtual const G4VTrackTerminator * GetTrackTerminator() const =0
G4GLOB_DLL std::ostream G4cout
const G4String & GetName() const
bool G4bool
Definition: G4Types.hh:79
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41
static G4TransportationManager * GetTransportationManager()
G4VPhysicalVolume * GetParallelWorld(const G4String &worldName)
virtual const G4VTrackTerminator * GetTrackTerminator() const
#define G4endl
Definition: G4ios.hh:61
G4VPhysicalVolume * GetWorldVolume() const