INukeDeltaPropg.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::INukeDeltaPropg
5 
6 \brief
7 
8 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
9  University of Liverpool & STFC Rutherford Appleton Laboratory
10 
11 \created Oct 01, 2009
12 
13 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
14  For the full text of the license visit http://copyright.genie-mc.org
15 
16 */
17 //____________________________________________________________________________
18 
19 #ifndef _INUKE_DELTA_PROPG_H_
20 #define _INUKE_DELTA_PROPG_H_
21 
22 #include "Framework/Conventions/GBuild.h"
24 
25 namespace genie {
26 
28 
29 public:
31  INukeDeltaPropg(string config);
33 
34  // implement the EventRecordVisitorI interface
35  void ProcessEventRecord(GHepRecord * event_rec) const;
36 
37  // overload the Algorithm::Configure() methods to load private data
38  // members from configuration options
39  void Configure(const Registry & config);
40  void Configure(string config);
41 
42 private:
43  void LoadConfig (void);
44 
45  double fR0; ///< effective nuclear size param
46  double fNR; ///< param multiplying the nuclear radius, determining how far to track hadrons beyond the "nuclear boundary"
47  double fHadStep; ///< step size for intranuclear hadron transport
48 };
49 
50 } // genie namespace
51 #endif // _INUKE_DELTA_PROPG_H_
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
Defines the EventRecordVisitorI interface. Concrete implementations of this interface use the &#39;Visito...
double fR0
effective nuclear size param
void Configure(const Registry &config)
static Config * config
Definition: config.cpp:1054
double fNR
param multiplying the nuclear radius, determining how far to track hadrons beyond the "nuclear bounda...
A registry. Provides the container for algorithm configuration parameters.
Definition: Registry.h:65
void ProcessEventRecord(GHepRecord *event_rec) const
GENIE&#39;s GHEP MC event record.
Definition: GHepRecord.h:45
double fHadStep
step size for intranuclear hadron transport