G4PhysListFactory.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 // $Id: G4PhysListFactory.cc,v 1.2 2012-09-20 21:43:53 greenc Exp $
27 // GEANT4 tag $Name: not supported by cvs2svn $
28 //
29 //---------------------------------------------------------------------------
30 //
31 // ClassName: G4PhysListFactory
32 //
33 // Author: 2011-10-06 R. Hatcher
34 //
35 // Modified:
36 //
37 //----------------------------------------------------------------------------
38 //
39 
40 #include "nutools/G4Base/G4PhysListFactory.hh"
41 #include "nutools/G4Base/G4PhysListFactorySingleton.hh"
42 
43 #ifdef DEF_ALT_FACTORY
44 namespace alt {
45 #endif
46 
48 {
49  // Allow user to override the default in case they use
50  // ReferencePhysList() and "PHYSLIST" is not set.
51  // By specifying "" as the default arg, this does nothing
52  // different in the case of previous use of default constructor.
53  if ( defname != "<none>" ) SetDefaultName(defname);
54 }
55 
57 {}
58 
59 G4VModularPhysicsList* G4PhysListFactory::ReferencePhysList()
60 {
61  // instantiate PhysList by environment variable "PHYSLIST"
63 }
64 
65 G4VModularPhysicsList* G4PhysListFactory::GetReferencePhysList(
66  const G4String& name)
67 {
68  // intantiate PhysList by name
70 }
71 
72 G4bool G4PhysListFactory::IsReferencePhysList(const G4String& name)
73 {
74  // check if name is known
76 }
77 
78 const std::vector<G4String>&
80 {
81  // return list of known names
83 }
84 
86 {
87  // print a list of available PhysLists
89 }
90 
91 
92 void G4PhysListFactory::SetDefaultName(const G4String& defname)
93 {
95 }
96 
97 const G4String& G4PhysListFactory::GetDefaultName() const
98 {
100 }
101 
102 #ifdef DEF_ALT_FACTORY
103 } // end of namespace alt
104 #endif
static QCString name
Definition: declinfo.cpp:673
G4PhysListFactory(const G4String &defname="<none>")
void SetDefaultName(const G4String &defname)
void PrintAvailablePhysLists() const
G4VModularPhysicsList * ReferencePhysList()
const std::vector< G4String > & AvailablePhysLists() const
void SetDefaultName(const G4String &defname)
G4VModularPhysicsList * GetReferencePhysList(const G4String &)
const G4String & GetDefaultName() const
const G4String & GetDefaultName() const
const std::vector< G4String > & AvailablePhysLists() const
G4bool IsReferencePhysList(const G4String &)
static G4PhysListFactorySingleton & Instance()
G4VModularPhysicsList * ReferencePhysList()
G4VModularPhysicsList * GetReferencePhysList(const G4String &)
G4bool IsReferencePhysList(const G4String &)