GENIEGenerator
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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-2024, 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 
26 namespace genie {
27 
29 
30 public :
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 
44 private:
45 
46  void LoadConfigData(void);
47 
48 
49 };
50 
51 } // genie namespace
52 
53 #endif // _NORM_INTERACTION_LIST_GENERATOR_H_
Defines the InteractionListGeneratorI interface. Concrete implementations of this interface generate ...
Concrete implementations of the InteractionListGeneratorI interface. Generates a list of all the Inte...
InteractionList * CreateInteractionList(const InitialState &init) const
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