DMELInteractionListGenerator.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::DMInteractionListGenerator
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 DMEL EventGenerator.
9 
10 \author Joshua Berger <jberger \at physics.wisc.edu>
11  University of Wisconsin-Madison
12  Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
13  University of Liverpool & STFC Rutherford Appleton Laboratory
14 
15 \created September 4, 2017
16 
17 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
18  For the full text of the license visit http://copyright.genie-mc.org
19 
20 */
21 //____________________________________________________________________________
22 
23 #ifndef _DMEL_INTERACTION_GENERATOR_H_
24 #define _DMEL_INTERACTION_GENERATOR_H_
25 
27 
28 namespace genie {
29 
31 
32 public :
36 
37  // implement the InteractionListGeneratorI interface
39 
40  // overload the Algorithm::Configure() methods to load private data
41  // members from configuration options
42  void Configure(const Registry & config);
43  void Configure(string config);
44 
45 private:
46 
47  void LoadConfigData(void);
48 
50 
51  bool fIsDM;
52 };
53 
54 } // genie namespace
55 
56 #endif // _DMEL_INTERACTION_GENERATOR_H_
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
InteractionList * CreateInteractionListDM(const InitialState &init) const
Defines the InteractionListGeneratorI interface. Concrete implementations of this interface generate ...
InteractionList * CreateInteractionList(const InitialState &init) const
init
Definition: train.py:42
static Config * config
Definition: config.cpp:1054
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