RSPPInteractionListGenerator.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::RSPPInteractionListGenerator
5 
6 \brief Creates a list of all the interactions that can be generated by the
7  SPP thread (generates exclusive inelastic 1 pion reactions proceeding
8  through resonance neutrinoproduction).
9  Concrete implementations of the InteractionListGeneratorI interface.
10 
11 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
12  University of Liverpool & STFC Rutherford Appleton Laboratory
13 
14 \created May 13, 2005
15 
16 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
17  For the full text of the license visit http://copyright.genie-mc.org
18 */
19 //____________________________________________________________________________
20 
21 #ifndef _RSPP_INTERACTION_LIST_GENERATOR_H_
22 #define _RSPP_INTERACTION_LIST_GENERATOR_H_
23 
26 
27 namespace genie {
28 
30 
31 public :
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 AddFinalStateInfo (Interaction * i, SppChannel_t chan) const;
47  void LoadConfigData(void);
48 
49  bool fIsCC;
50  bool fIsNC;
51 };
52 
53 } // genie namespace
54 #endif // _RSPP_INTERACTION_LIST_GENERATOR_H_
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
Defines the InteractionListGeneratorI interface. Concrete implementations of this interface generate ...
init
Definition: train.py:42
enum genie::ESppChannel SppChannel_t
Summary information for an interaction.
Definition: Interaction.h:56
static Config * config
Definition: config.cpp:1054
void AddFinalStateInfo(Interaction *i, SppChannel_t chan) const
A registry. Provides the container for algorithm configuration parameters.
Definition: Registry.h:65
A vector of Interaction objects.
InteractionList * CreateInteractionList(const InitialState &init) const
Creates a list of all the interactions that can be generated by the SPP thread (generates exclusive i...
Initial State information.
Definition: InitialState.h:48