source: trunk/source/processes/hadronic/models/incl/include/G4InclCascadeInterface.hh@ 1199

Last change on this file since 1199 was 819, checked in by garnier, 17 years ago

import all except CVS

File size: 4.0 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// $Id: G4InclCascadeInterface.hh,v 1.5 2007/10/31 10:44:22 miheikki Exp $
27// Translation of INCL4.2/ABLA V3
28// Pekka Kaitaniemi, HIP (translation)
29// Christelle Schmidt, IPNL (fission code)
30// Alain Boudard, CEA (contact person INCL/ABLA)
31// Aatos Heikkinen, HIP (project coordination)
32
33
34// CLASS DESCRIPTION
35// This class is a preliminary interface code for INCL4 cascade
36// code. This class is intended to be used as an interface for
37// colliding hadrons (protons, neutrons, pions) to nuclei.
38
39// This class was created by Pekka Kaitaniemi
40// (kaitanie@cc.helsinki.fi) , Helsinki Institute of Physics using
41// G4CascadeInterface as a template.
42
43
44#ifndef G4INCLCASCADEINTERFACE_H
45#define G4INCLCASCADEINTERFACE_H 1
46
47#include "G4Nucleon.hh"
48#include "G4Nucleus.hh"
49#include "G4HadronicInteraction.hh"
50#include "G4VIntraNuclearTransportModel.hh"
51#include "G4KineticTrackVector.hh"
52#include "G4FragmentVector.hh"
53#include "G4ParticleChange.hh"
54#include "G4ReactionProductVector.hh"
55#include "G4ReactionProduct.hh"
56
57// INCL includes
58#include "G4InclDataDefs.hh"
59#include "G4AblaDataDefs.hh"
60#include "G4Incl.hh"
61
62#include <fstream>
63#include <iostream>
64
65using namespace std;
66
67/**
68 * Interface for INCL. This interface handles basic hadron
69 * bullet particles (protons, neutrons, pions).
70 * @see G4InclAblaLightIonInterface
71 */
72
73class G4InclCascadeInterface : public G4VIntraNuclearTransportModel {
74
75public:
76 /**
77 * Basic constructor.
78 */
79 G4InclCascadeInterface();
80
81
82 G4int operator==(G4InclCascadeInterface& right) {
83 return (this == &right);
84 }
85
86 G4int operator!=(G4InclCascadeInterface& right) {
87 return (this != &right);
88 }
89
90 ~G4InclCascadeInterface(); // Destructor
91
92 G4ReactionProductVector* Propagate(G4KineticTrackVector* theSecondaries, G4V3DNucleus* theNucleus); // Idle
93
94 /**
95 * Main method to apply the INCL/ABLA physics model.
96 * @param aTrack the projectile particle
97 * @param theNucleus target nucleus
98 * @return the output of the INCL/ABLA physics model
99 */
100 G4HadFinalState* ApplyYourself(const G4HadProjectile& aTrack, G4Nucleus& theNucleus);
101
102private:
103 G4int outputVerbosity;
104 G4int verboseLevel;
105
106private:
107 G4Hazard *hazard; // The random seeds used by INCL.
108 G4VarNtp *varntp;
109 G4Calincl *calincl;
110 G4Ws *ws;
111 G4Mat *mat;
112 G4Incl *incl;
113
114 G4HadFinalState theResult;
115 ofstream diagdata;
116
117 G4int eventNumber;
118 G4double previousTargetA;
119 G4double previousTargetZ;
120};
121
122#endif // G4INCLCASCADEINTERFACE_H
Note: See TracBrowser for help on using the repository browser.