GENIEGenerator
Loading...
Searching...
No Matches
MECInteractionListGenerator.h
Go to the documentation of this file.
1//____________________________________________________________________________
2/*!
3
4\class genie::MECInteractionListGenerator
5
6\brief Concrete implementations of the InteractionListGeneratorI interface.
7 Generates a list of all the interactions that can be generated by the
8 MEC EventGenerator.
9
10\author Costas Andreopoulos <c.andreopoulos \at cern.ch>
11 University of Liverpool
12
13\created Sep 22, 2008
14
15\cpright Copyright (c) 2003-2025, The GENIE Collaboration
16 For the full text of the license visit http://copyright.genie-mc.org
17*/
18//____________________________________________________________________________
19
20#ifndef _MEC_INTERACTION_GENERATOR_H_
21#define _MEC_INTERACTION_GENERATOR_H_
22
24
25namespace genie {
26
28
29public :
31 MECInteractionListGenerator(string config);
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
42private:
43
44 void LoadConfigData(void);
45
46 bool fIsCC;
47 bool fIsNC;
48 bool fIsEM;
51};
52
53} // genie namespace
54#endif // _MEC_INTERACTION_GENERATOR_H_
Initial State information.
A vector of Interaction objects.
InteractionList * CreateInteractionList(const InitialState &init) const
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25