GENIEGenerator
Loading...
Searching...
No Matches
INukeDeltaPropg.h
Go to the documentation of this file.
1//____________________________________________________________________________
2/*!
3
4\class genie::INukeDeltaPropg
5
6\brief
7
8\author Costas Andreopoulos <c.andreopoulos \at cern.ch>
9 University of Liverpool
10
11\created Oct 01, 2009
12
13\cpright Copyright (c) 2003-2025, 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
25namespace genie {
26
28
29public:
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
42private:
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_
GENIE's GHEP MC event record.
Definition GHepRecord.h:45
double fR0
effective nuclear size param
void ProcessEventRecord(GHepRecord *event_rec) const
double fHadStep
step size for intranuclear hadron transport
void Configure(const Registry &config)
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
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25