GLRESInteractionListGenerator.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::GLRESInteractionListGenerator
5 
6 \brief Generates a list of all the interactions that cab be generated by
7  the GLRES EventGenerator
8 
9 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
10  University of Liverpool & STFC Rutherford Appleton Laboratory
11 
12 \created December 14, 2009
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 _GLASHOW_RESONANCE_INTERACTION_GENERATOR_H_
20 #define _GLASHOW_RESONANCE_INTERACTION_GENERATOR_H_
21 
23 
24 namespace genie {
25 
27 
28 public :
32 
33  // implement the InteractionListGeneratorI interface
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 LoadConfigData(void);
44 
45  bool fIsMu;
46  bool fIsTau;
47  bool fIsEle;
48  bool fIsHad;
49 
50 };
51 
52 } // genie namespace
53 
54 #endif // _GLASHOW_RESONANCE_INTERACTION_GENERATOR_H_
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
Defines the InteractionListGeneratorI interface. Concrete implementations of this interface generate ...
init
Definition: train.py:42
static Config * config
Definition: config.cpp:1054
InteractionList * CreateInteractionList(const InitialState &init) const
Generates a list of all the interactions that cab be generated by the GLRES EventGenerator.
A registry. Provides the container for algorithm configuration parameters.
Definition: Registry.h:65
A vector of Interaction objects.
Initial State information.
Definition: InitialState.h:48