Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4ParallelWorldProcessStore.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: G4ParallelWorldProcess.cc 76935 2013-11-19 09:46:31Z gcosmo $
28 // GEANT4 tag $Name: geant4-09-04-ref-00 $
29 //
30 //
31 
34 
35 G4ThreadLocal G4ParallelWorldProcessStore* G4ParallelWorldProcessStore::fInstance=0;
36 
38 {
39  if(!fInstance)
40  { fInstance = new G4ParallelWorldProcessStore(); }
41  return fInstance;
42 }
43 
45 {
46  return fInstance;
47 }
48 
49 G4ParallelWorldProcessStore::G4ParallelWorldProcessStore()
50 {;}
51 
53 {
54  Clear();
55  fInstance = 0;
56 }
57 
59  G4String parallelWorldName)
60 {
61  std::map<G4ParallelWorldProcess*,G4String>::iterator itr;
62  for(itr=fInstance->begin();itr!=fInstance->end();itr++)
63  {
64  if(itr->first==proc)
65  {
66  if(itr->second==parallelWorldName)
67  { // already registered
68  return;
69  }
70  else
71  { // insonsistent !
73  ED << "G4ParallelWorldProcess (" << proc << ") has the world volume ("
74  << itr->second << "). It is inconsistent with (" << parallelWorldName << ").";
75  G4Exception("G4ParallelWorldProcessStore::SetParallelWorld","ProcScore0101",
76  FatalException,ED);
77  }
78  }
79  }
80  (*fInstance)[proc] = parallelWorldName;
81 }
82 
84 {
85  std::map<G4ParallelWorldProcess*,G4String>::iterator itr;
86  for(itr=fInstance->begin();itr!=fInstance->end();itr++)
87  { (itr->first)->SetParallelWorld(itr->second); }
88 }
89 
91 {
92  std::map<G4ParallelWorldProcess*,G4String>::iterator itr;
93  for(itr=fInstance->begin();itr!=fInstance->end();itr++)
94  { if(itr->second==parallelWorldName) return itr->first; }
95  return 0;
96 }
97 
99 { fInstance->clear(); }
100 
std::ostringstream G4ExceptionDescription
Definition: globals.hh:76
#define G4ThreadLocal
Definition: tls.hh:89
static G4ParallelWorldProcessStore * GetInstance()
static G4ParallelWorldProcessStore * GetInstanceIfExist()
G4ParallelWorldProcess * GetProcess(G4String parallelWorldName)
void SetParallelWorld(G4ParallelWorldProcess *proc, G4String parallelWorldName)
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41