DMEInteractionListGenerator.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::DMEInteractionListGenerator
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 DME EventGenerator.
9 
10 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
11  University of Liverpool & STFC Rutherford Appleton Laboratory
12 
13 \created July 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 
21 #ifndef _DME_INTERACTION_GENERATOR_H_
22 #define _DME_INTERACTION_GENERATOR_H_
23 
25 
26 namespace genie {
27 
29 
30 public :
34 
35  //-- implement the InteractionListGeneratorI interface
37 
38  //-- overload the Algorithm::Configure() methods to load private data
39  // members from configuration options
40  void Configure(const Registry & config);
41  void Configure(string config);
42 
43 private:
44  InteractionList * DMEELInteractionList (const InitialState & init_state) const;
45 
46  void LoadConfig (void);
47 
48 };
49 
50 } // genie namespace
51 #endif // _DME_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
A registry. Provides the container for algorithm configuration parameters.
Definition: Registry.h:65
A vector of Interaction objects.
Concrete implementations of the InteractionListGeneratorI interface. Generates a list of all the Inte...
InteractionList * DMEELInteractionList(const InitialState &init_state) const
Initial State information.
Definition: InitialState.h:48