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

Last change on this file since 1274 was 1274, checked in by garnier, 14 years ago

update...

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