GENIEGenerator
Loading...
Searching...
No Matches
NormInteractionListGenerator.h
Go to the documentation of this file.
1//____________________________________________________________________________
2/*!
3
4\class genie::NormInteractionListGenerator
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 NormGenerator.
9
10\author Igor Kakorin <kakorin@jinr.ru>
11 Joint Institute for Nuclear Research
12
13\created May 16, 2022
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
21#ifndef _NORM_INTERACTION_LIST_GENERATOR_H_
22#define _NORM_INTERACTION_LIST_GENERATOR_H_
23
25
26namespace genie {
27
29
30public :
31
33 NormInteractionListGenerator(string config);
35
36 //-- implement the InteractionListGeneratorI interface
38
39 //-- overload the Algorithm::Configure() methods to load private data
40 // members from configuration options
41 void Configure(const Registry & config);
42 void Configure(string config);
43
44private:
45
46 void LoadConfigData(void);
47
48
49};
50
51} // genie namespace
52
53#endif // _NORM_INTERACTION_LIST_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