GENIEGenerator
Loading...
Searching...
No Matches
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 <c.andreopoulos \at cern.ch>
10 University of Liverpool
11
12\created October 03, 2004
13
14\cpright Copyright (c) 2003-2025, 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
24namespace genie {
25
27
28public :
30 DISHadronicSystemGenerator(string config);
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
41private:
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 fct0nucleon
formation zone (c * formation time) - for nucleons
double fK
param multiplying pT^2 in formation zone calculation
void SimulateFormationZone(GHepRecord *event_rec) const
const EventRecordVisitorI * fHadronizationModel
double fNR
how far beyond the nuclear boundary does the particle tracker goes?
double fR0
param controling nuclear size
double fct0pion
formation zone (c * formation time) - for pions
void ProcessEventRecord(GHepRecord *event_rec) const
Defines the EventRecordVisitorI interface. Concrete implementations of this interface use the 'Visito...
GENIE's GHEP MC event record.
Definition GHepRecord.h:45
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25