Geant4-11
G4WarnPLStatus.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#include "G4WarnPLStatus.hh"
28
30{}
31
33{}
34
35void G4WarnPLStatus::Replaced(const G4String aPL, const G4String Replacement) const
36{
37 G4cout <<
38"*=====================================================================" <<G4endl <<
39"* " <<G4endl <<
40"* The Physics list "<<aPL<<" no longer exists " <<G4endl <<
41"* We recommend you use the physics lists "<<Replacement<< "," <<G4endl <<
42"* this offers similar functionality for most use cases " <<G4endl <<
43"* " <<G4endl <<
44"* " <<G4endl <<
45"* We invite you to report your use case for, and your experience with" <<G4endl <<
46"* this physics list on the Geant4 User Forum dedicated to physics " <<G4endl <<
47"* lists: " <<G4endl <<
48"* http://hypernews.slac.stanford.edu/HyperNews/geant4/get/phys-list.html"<<G4endl <<
49"* " <<G4endl <<
50"*=====================================================================*" <<G4endl<<
51G4endl;
52}
53
54void G4WarnPLStatus::OnlyFromFactory(const G4String aPL, const G4String basePL) const
55{
56 G4cout <<
57"*=====================================================================" <<G4endl <<
58"* " <<G4endl <<
59"* The Physics list "<<aPL<<", a variation of "<< basePL<< " will be " <<G4endl <<
60"* available only via the physics list factory starting from the " <<G4endl <<
61"* next release, Geant4 10 . " <<G4endl <<
62"* We recommend you to replace code like " <<G4endl <<
63"* " <<G4endl <<
64" runManager->SetUserInitialization( new " << aPL << " ); " <<G4endl <<
65"* " <<G4endl <<
66"* by the following " <<G4endl <<
67"* " <<G4endl <<
68" G4PhysListFactory factory; " <<G4endl <<
69" runManager->SetUserInitialization(" <<G4endl <<
70" factory.GetReferencePhysList(\"" << aPL << "\");" <<G4endl <<
71"* " <<G4endl <<
72"* For more information how to use G4PhysListFactory, please refer " <<G4endl <<
73"* to the documentation available at " <<G4endl <<
74"* http://cern.ch/geant4/support/physicsLists/PhysListFactory.shtml " <<G4endl <<
75"* " <<G4endl <<
76"* We invite you to report your use case for, and your experience with" <<G4endl <<
77"* this physics list on the Geant4 User Forum dedicated to physics " <<G4endl <<
78"* lists: " <<G4endl <<
79"* http://hypernews.slac.stanford.edu/HyperNews/geant4/get/phys-list.html"<<G4endl <<
80"* " <<G4endl <<
81"*=====================================================================*" <<G4endl<<
82G4endl;
83 //G4String txtPL;
84 //txtPL=aPL + "::" + aPL;
85 //G4Exception(txtPL,"PhysicsLists001", FatalException,desc);
86}
87
88
89void G4WarnPLStatus::Unsupported(const G4String aPL, const G4String Replacement) const
90{
91 G4cout <<
92"*=====================================================================" <<G4endl <<
93"* " <<G4endl <<
94"* The Physics list "<<aPL<<" is NO LONGER SUPPORTED ! " <<G4endl <<
95//"* and is likely to be deleted in a future release of Geant4 " <<G4endl <<
96"* and will be deleted in the next release, Geant4 10 " <<G4endl <<
97"* " <<G4endl;
98 if (Replacement.size() > 0)
99 {
100 G4cout <<
101"* We recommend you try the physics lists "<<Replacement<< "," <<G4endl <<
102"* this offers similar functionality for most use cases " <<G4endl <<
103"* " <<G4endl;
104
105 }
106 G4cout <<
107"* " <<G4endl <<
108"* We invite you to report your use case for, and your experience with" <<G4endl <<
109"* this physics list on the Geant4 User Forum dedicated to physics " <<G4endl <<
110"* lists: " <<G4endl <<
111"* http://hypernews.slac.stanford.edu/HyperNews/geant4/get/phys-list.html"<<G4endl <<
112"* " <<G4endl <<
113"*=====================================================================*" <<G4endl<<
114G4endl;
115}
116
118{
119 G4cout <<
120"*=====================================================================" <<G4endl <<
121"* " <<G4endl <<
122"* The Physics list "<<aPL<<" is an experimental physics list ! " <<G4endl <<
123"* " <<G4endl <<
124"* Please report your use case for, and your experience with this " <<G4endl <<
125"* physics list on the Geant4 User Forum dedicated to physics lists: " <<G4endl <<
126"* http://hypernews.slac.stanford.edu/HyperNews/geant4/get/phys-list.html"<<G4endl <<
127"* " <<G4endl <<
128"*=====================================================================*" <<G4endl<<
129G4endl;
130}
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
void Unsupported(const G4String aPL, const G4String Replacement="") const
void OnlyFromFactory(const G4String aPL, const G4String basePL) const
void Experimental(const G4String aPL) const
void Replaced(const G4String aPL, const G4String Replacement) const