GENIEGenerator
Loading...
Searching...
No Matches
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 <c.andreopoulos \at cern.ch>
13 University of Liverpool
14
15\created September 4, 2017
16
17\cpright Copyright (c) 2003-2025, 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
28namespace genie {
29
31
32public :
34 DMELInteractionListGenerator(string config);
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
45private:
46
47 void LoadConfigData(void);
48
50
51 bool fIsDM;
52};
53
54} // genie namespace
55
56#endif // _DMEL_INTERACTION_GENERATOR_H_
InteractionList * CreateInteractionListDM(const InitialState &init) const
InteractionList * CreateInteractionList(const InitialState &init) const
Initial State information.
A vector of Interaction objects.
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25