source: trunk/source/processes/hadronic/models/incl/include/G4InclAblaCascadeInterface.hh @ 1340

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

update ti head

File size: 5.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: G4InclAblaCascadeInterface.hh,v 1.9 2010/10/26 02:47:59 kaitanie 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 G4INCLABLACASCADEINTERFACE_H
45#define G4INCLABLACASCADEINTERFACE_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 * <h1>INCL intra-nuclear cascade with built-in ABLA de-excitation</h1>
69 *
70 * Interface for INCL/ABLA. This interface handles basic hadron
71 * bullet particles (protons, neutrons, pions).
72 *
73 * Example usage in case of protons:
74 * @code
75 * G4InclAblaCascadeInterface* inclModel = new G4InclAblaCascadeInterface;
76 * inclModel -> SetMinEnergy(0.0 * MeV); // Set the energy limits
77 * inclModel -> SetMaxEnergy(3.0 * GeV);
78 *
79 * G4ProtonInelasticProcess* protonInelasticProcess = new G4ProtonInelasticProcess();
80 * G4ProtonInelasticCrossSection* protonInelasticCrossSection =  new G4ProtonInelasticCrossSection();
81 *
82 * protonInelasticProcess -> RegisterMe(inclModel);
83 * protonInelasticProcess -> AddDataSet(protonInelasticCrossSection);
84 *
85 * particle = G4Proton::Proton();
86 * processManager = particle -> GetProcessManager();
87 * processManager -> AddDiscreteProcess(protonInelasticProcess);
88 * @endcode
89 * The same setup procedure is needed for neutron and pion inelastic processes
90 * as well.
91 *
92 * @see G4InclAblaLightIonInterface
93 */
94
95class G4InclAblaCascadeInterface : public G4VIntraNuclearTransportModel {
96
97public:
98  /**
99   * Basic constructor.
100   */
101  G4InclAblaCascadeInterface(const G4String& name = "INCL/ABLA Cascade");
102
103 
104  G4int operator==(G4InclAblaCascadeInterface& right) {
105    return (this == &right);
106  }
107
108  G4int operator!=(G4InclAblaCascadeInterface& right) {
109    return (this != &right);
110  }
111
112  ~G4InclAblaCascadeInterface(); // Destructor
113
114  G4ReactionProductVector* Propagate(G4KineticTrackVector* theSecondaries, G4V3DNucleus* theNucleus); // Idle
115
116  /**
117   * Main method to apply the INCL/ABLA physics model.
118   * @param aTrack the projectile particle
119   * @param theNucleus target nucleus
120   * @return the output of the INCL/ABLA physics model
121   */
122  G4HadFinalState* ApplyYourself(const G4HadProjectile& aTrack,  G4Nucleus& theNucleus); 
123
124private:
125  G4int outputVerbosity;
126  G4int verboseLevel;
127
128private:
129  G4Hazard *hazard; // The random seeds used by INCL.
130  G4VarNtp *varntp;
131  G4InclInput *calincl;
132  G4Ws *ws;
133  G4Mat *mat;
134  G4Incl *incl;
135
136  G4HadFinalState theResult; 
137  ofstream diagdata;
138
139  G4int eventNumber;
140  G4double previousTargetA;
141  G4double previousTargetZ;
142};
143
144#endif // G4INCLABLACASCADEINTERFACE_H
Note: See TracBrowser for help on using the repository browser.