HNIntranuke.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::Intranuke
5 
6 \brief The INTRANUKE intranuclear hadron transport MC.
7  Is a concrete implementation of the EventRecordVisitorI interface.
8 
9 \ref R.Merenyi et al., Phys.Rev.D45 (1992)
10  R.D.Ransome, Nucl.Phys.B 139 (2005)
11 
12  Current INTRANUKE development is led by S.Dytman and H.Gallagher.
13  The original INTRANUKE cascade MC was developed (in fortran) for the
14  NeuGEN MC by R.Edgecock, G.F.Pearce, W.A.Mann, R.Merenyi and others.
15 
16 \author Steve Dytman <dytman+@pitt.edu>, Pittsburgh University
17  Aaron Meyer <asm58@pitt.edu>, Pittsburgh University
18  Alex Bell, Pittsburgh University
19  Hugh Gallagher <gallag@minos.phy.tufts.edu>, Tufts University
20  Costas Andreopoulos <costas.andreopoulos \at stfc.ac.uk> STFC, Rutherford Lab
21 
22 \created September 20, 2005
23 
24 \cpright Copyright (c) 2003-2017, GENIE Neutrino MC Generator Collaboration
25  For the full text of the license visit http://copyright.genie-mc.org
26  or see $GENIE/LICENSE
27 */
28 //____________________________________________________________________________
29 
30 #ifndef _HN_INTRANUKE_H_
31 #define _HN_INTRANUKE_H_
32 
33 #include <TGenPhaseSpace.h>
34 
36 #include "Algorithm/AlgFactory.h"
41 
42 class TLorentzVector;
43 class TVector3;
44 
45 namespace genie {
46 
47 class GHepParticle;
48 class INukeHadroData;
49 class PDGCodeList;
50 
51 class HNIntranuke : public Intranuke {
52 
53 friend class IntranukeTester;
54 
55 public :
56  HNIntranuke();
57  HNIntranuke(string config);
58  ~HNIntranuke();
59 
60  void ProcessEventRecord(GHepRecord * event_rec) const;
61 
62 private:
63 
64  void LoadConfig (void);
65 
66  // methods specific to intranuke HN-mode
69  double FateWeight (int pdgc, INukeFateHN_t fate) const;
70  void ElasHN (GHepRecord* ev, GHepParticle* p, INukeFateHN_t fate) const;
71  void AbsorbHN (GHepRecord* ev, GHepParticle* p, INukeFateHN_t fate) const;
72  void InelasticHN (GHepRecord* ev, GHepParticle* p) const;
73  void GammaInelasticHN (GHepRecord* ev, GHepParticle* p, INukeFateHN_t fate) const;
74  bool HandleCompoundNucleus(GHepRecord* ev, GHepParticle* p, int mom) const;
75 
76  // data members specific to intranuke HN-mode
77  double fNucQEFac;
78 
79 };
80 
81 } // genie namespace
82 
83 #endif // _HN_INTRANUKE_H_
84 
bool HandleCompoundNucleus(GHepRecord *ev, GHepParticle *p, int mom) const
#include "Numerical/GSFunc.h"
Definition: AlgCmp.h:26
void GammaInelasticHN(GHepRecord *ev, GHepParticle *p, INukeFateHN_t fate) const
The INTRANUKE intranuclear hadron transport MC. Is a concrete implementation of the EventRecordVisito...
Definition: Intranuke.h:54
void ElasHN(GHepRecord *ev, GHepParticle *p, INukeFateHN_t fate) const
void ProcessEventRecord(GHepRecord *event_rec) const
void LoadConfig(void)
void SimulateHadronicFinalState(GHepRecord *ev, GHepParticle *p) const
double FateWeight(int pdgc, INukeFateHN_t fate) const
enum genie::EINukeFateHN_t INukeFateHN_t
void AbsorbHN(GHepRecord *ev, GHepParticle *p, INukeFateHN_t fate) const
void InelasticHN(GHepRecord *ev, GHepParticle *p) const
p
Definition: test.py:228
friend class IntranukeTester
Definition: HNIntranuke.h:53
INukeFateHN_t HadronFateHN(const GHepParticle *p) const
GENIE&#39;s GHEP MC event record.
Definition: GHepRecord.h:46
STDHEP-like event record entry that can fit a particle or a nucleus.
Definition: GHepParticle.h:40