QELInteractionListGenerator.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::QELInteractionListGenerator
5 
6 \brief Concrete implementations of the InteractionListGeneratorI interface.
7  Generates a list of all the Interaction (= event summary) objects that
8  can be generated by the QEL EventGenerator.
9 
10 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
11  University of Liverpool & STFC Rutherford Appleton Laboratory
12 
13 \created May 13, 2005
14 
15 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
16  For the full text of the license visit http://copyright.genie-mc.org
17 */
18 //____________________________________________________________________________
19 
20 #ifndef _QEL_INTERACTION_GENERATOR_H_
21 #define _QEL_INTERACTION_GENERATOR_H_
22 
24 
25 namespace genie {
26 
28 
29 public :
33 
34  // implement the InteractionListGeneratorI interface
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 
44  void LoadConfigData(void);
45 
51 
52  bool fIsCC;
53  bool fIsNC;
54  bool fIsEM;
55  bool fIsCharm;
56  bool fIsStrange;
57 };
58 
59 } // genie namespace
60 
61 #endif // _QEL_INTERACTION_GENERATOR_H_
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
Defines the InteractionListGeneratorI interface. Concrete implementations of this interface generate ...
InteractionList * CreateInteractionListCharmCC(const InitialState &init) const
Concrete implementations of the InteractionListGeneratorI interface. Generates a list of all the Inte...
init
Definition: train.py:42
InteractionList * CreateInteractionList(const InitialState &init) const
static Config * config
Definition: config.cpp:1054
InteractionList * CreateInteractionListNC(const InitialState &init) const
InteractionList * CreateInteractionListStrangeCC(const InitialState &init) const
A registry. Provides the container for algorithm configuration parameters.
Definition: Registry.h:65
A vector of Interaction objects.
InteractionList * CreateInteractionListEM(const InitialState &init) const
InteractionList * CreateInteractionListCC(const InitialState &init) const
Initial State information.
Definition: InitialState.h:48