GENIEGenerator
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
NuEInteractionListGenerator.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::NuEInteractionListGenerator
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 NUE EventGenerator.
9 
10 \author Costas Andreopoulos <c.andreopoulos \at cern.ch>
11  University of Liverpool
12 
13 \created July 13, 2005
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 #ifndef _NUE_INTERACTION_GENERATOR_H_
21 #define _NUE_INTERACTION_GENERATOR_H_
22 
24 
25 namespace genie {
26 
28 
29 public :
31  NuEInteractionListGenerator(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 
42 private:
43  InteractionList * IMDInteractionList (const InitialState & init_state) const;
44  InteractionList * IMDAnnihilationInteractionList (const InitialState & init_state) const;
45  InteractionList * NuEELInteractionList (const InitialState & init_state) const;
46 
47  void LoadConfig (void);
48 
49  bool fIsIMD;
50  bool fIsIMDAnh;
51 };
52 
53 } // genie namespace
54 #endif // _NUE_INTERACTION_GENERATOR_H_
InteractionList * IMDAnnihilationInteractionList(const InitialState &init_state) const
Defines the InteractionListGeneratorI interface. Concrete implementations of this interface generate ...
InteractionList * IMDInteractionList(const InitialState &init_state) const
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.
InteractionList * NuEELInteractionList(const InitialState &init_state) const
Initial State information.
Definition: InitialState.h:48