source: trunk/source/physics_lists/test/compile.cc@ 1342

Last change on this file since 1342 was 1315, checked in by garnier, 15 years ago

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

File size: 4.9 KB
RevLine 
[1274]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#include "G4RunManager.hh"
27
[1315]28//9.4beta #include "FTFC.hh"
29//9.4beta #include "FTFP.hh"
[1274]30#include "FTFP_BERT.hh"
31#include "FTFP_BERT_TRV.hh"
32
33#include "LBE.hh"
[1315]34//9.4beta #include "LHEP_BERT_HP.hh"
35//9.4beta #include "LHEP_BERT.hh"
[1274]36#include "LHEP_EMV.hh"
37#include "LHEP.hh"
[1315]38//#include "LHEP_PRECO_HP.hh"
[1274]39
40#include "QBBC.hh"
41
[1315]42//#include "QGSC_EMV.hh"
43//#include "QGSC.hh"
44//#include "QGSC_EFLOW.hh"
[1274]45#include "QGSC_BERT.hh"
[1315]46//#include "QGSC_QGSC.hh"
[1274]47#include "QGSC_CHIPS.hh"
48#include "CHIPS.hh"
49
50#include "QGSP.hh"
[1315]51//#include "QGSP_DIF.hh"
[1274]52#include "QGSP_BERT_HP.hh"
53#include "QGSP_BERT.hh"
54#include "QGSP_BERT_EMX.hh"
[1315]55//#include "QGSP_BERT_DIF.hh"
[1274]56#include "QGSP_BIC_HP.hh"
57#include "QGSP_BIC.hh"
58#include "G4IonQMDPhysics.hh"
[1315]59//#include "QGSP_EMV.hh"
60//#include "QGSP_EMX.hh"
61//#include "QGSP_QEL.hh"
[1274]62//#include "QGSP_CASC.hh"
63#include "QGSP_INCL_ABLA.hh"
64
65#include "QGSP_FTFP_BERT.hh"
[1315]66#include "QGSP_BERT_CHIPS.hh"
[1274]67
68#include "QGS_BIC.hh"
69#include "FTF_BIC.hh"
70
71#include "CLHEP/Random/RanluxEngine.h"
72
73int main(int argc,char** argv) {
74
75 CLHEP::RanluxEngine defaultEngine( 1234567, 4 );
76 CLHEP::HepRandom::setTheEngine( &defaultEngine );
77 G4RunManager* runManager = new G4RunManager;
78// runManager->SetUserInitialization( new StatAccepTestDetectorConstruction );
79
[1315]80//9.4beta G4VModularPhysicsList * theFTF1 = new FTFC;
81//9.4beta G4VModularPhysicsList * theFTF2 = new FTFP;
[1274]82 G4VModularPhysicsList * theFTF3 = new FTFP_BERT;
83 G4VModularPhysicsList * theFTF3a = new FTFP_BERT_TRV;
84
85 G4VModularPhysicsList *theLBE = new LBE;
86
[1315]87//9.4beta G4VModularPhysicsList *thePL4 = new LHEP_BERT_HP;
88//9.4beta G4VModularPhysicsList *thePL5 = new LHEP_BERT;
[1274]89 G4VModularPhysicsList *thePL8 = new LHEP_EMV;
90 G4VModularPhysicsList *thePL10 = new LHEP;
91
92 G4VModularPhysicsList *thePL15 = new QBBC;
93
[1315]94//9.4beta G4VModularPhysicsList *thePL16 = new QGSC_EMV;
95//9.4beta G4VModularPhysicsList *thePL17 = new QGSC;
[1274]96//replaced G4VModularPhysicsList *thePL17a = new QGSC_EFLOW;
97 G4VModularPhysicsList *thePL18 = new QGSC_BERT;
[1315]98//9.4beta G4VModularPhysicsList *thePL18a = new QGSC_QGSC;
[1274]99 G4VModularPhysicsList *thePL18b = new QGSC_CHIPS;
100 G4VModularPhysicsList *thePL19 = new CHIPS;
101
102 G4VModularPhysicsList *thePL20 = new QGSP_BERT_HP;
103 G4VModularPhysicsList *thePL21 = new QGSP_BERT;
104 G4VModularPhysicsList *thePL21a = new QGSP_BERT_EMX;
[1315]105 G4VModularPhysicsList *thePL21b = new QGSP_BERT_CHIPS;
106//9.4beta G4VModularPhysicsList *thePL21b = new QGSP_BERT_DIF;
[1274]107 G4VModularPhysicsList *thePL22 = new QGSP_BIC_HP;
108 G4VModularPhysicsList *thePL23 = new QGSP_BIC;
109 G4VModularPhysicsList *thePL23a= new QGSP_BIC(1);
110 G4IonQMDPhysics * ionQMD=new G4IonQMDPhysics("IonQMD",1);
111 thePL23a->RegisterPhysics(ionQMD);
112 ionQMD->ConstructProcess();
[1315]113//9.4beta G4VModularPhysicsList *thePL24 = new QGSP_EMV;
[1274]114//replaced G4VModularPhysicsList *thePL25 = new QGSP_EMX;
115 G4VModularPhysicsList *thePL27 = new QGSP;
[1315]116//9.4beta G4VModularPhysicsList *thePL27a = new QGSP_DIF;
117//9.4beta G4VModularPhysicsList *thePL28 = new QGSP_QEL;
[1274]118// G4VModularPhysicsList *thePL29 = new QGSP_CASC;
119 G4VModularPhysicsList *thePL29 = new QGSP_INCL_ABLA;
120
121 G4VModularPhysicsList *thePL30 = new QGS_BIC;
122 G4VModularPhysicsList *thePL31 = new FTF_BIC;
123
124 G4VModularPhysicsList *thePL40 = new QGSP_FTFP_BERT;
125
126
127 delete runManager;
128 return 0;
129}
Note: See TracBrowser for help on using the repository browser.