DISHadronicSystemGenerator.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::DISHadronicSystemGenerator
5 
6 \brief Generates the final state hadronic system in v DIS interactions.
7  Is a concrete implementation of the EventRecordVisitorI interface.
8 
9 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
10  University of Liverpool & STFC Rutherford Appleton Laboratory
11 
12 \created October 03, 2004
13 
14 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
15  For the full text of the license visit http://copyright.genie-mc.org
16 */
17 //____________________________________________________________________________
18 
19 #ifndef _DIS_HADRONIC_SYSTEM_GENERATOR_H_
20 #define _DIS_HADRONIC_SYSTEM_GENERATOR_H_
21 
23 
24 namespace genie {
25 
27 
28 public :
32 
33  // implement the EventRecordVisitorI interface
34  void ProcessEventRecord(GHepRecord * event_rec) const;
35 
36  // overload the Algorithm::Configure() methods to load private data
37  // members from configuration options
38  void Configure(const Registry & config);
39  void Configure(string config);
40 
41 private:
42 
43  void SimulateFormationZone (GHepRecord * event_rec) const;
44 
45  void LoadConfig (void);
46 
48 
50  double fR0; ///< param controling nuclear size
51  double fNR; ///< how far beyond the nuclear boundary does the particle tracker goes?
52  double fct0pion; ///< formation zone (c * formation time) - for pions
53  double fct0nucleon; ///< formation zone (c * formation time) - for nucleons
54  double fK; ///< param multiplying pT^2 in formation zone calculation
55 };
56 
57 } // genie namespace
58 
59 #endif // _DIS_HADRONIC_SYSTEM_GENERATOR_H_
double fct0pion
formation zone (c * formation time) - for pions
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
Defines the EventRecordVisitorI interface. Concrete implementations of this interface use the &#39;Visito...
void ProcessEventRecord(GHepRecord *event_rec) const
double fK
param multiplying pT^2 in formation zone calculation
const EventRecordVisitorI * fHadronizationModel
double fNR
how far beyond the nuclear boundary does the particle tracker goes?
static Config * config
Definition: config.cpp:1054
double fct0nucleon
formation zone (c * formation time) - for nucleons
Generates the final state hadronic system in v DIS interactions. Is a concrete implementation of the ...
A registry. Provides the container for algorithm configuration parameters.
Definition: Registry.h:65
void SimulateFormationZone(GHepRecord *event_rec) const
Abstract class. Is used to pass some commonly recurring methods to all concrete implementations of th...
double fR0
param controling nuclear size
GENIE&#39;s GHEP MC event record.
Definition: GHepRecord.h:45