GENIEGenerator
Loading...
Searching...
No Matches
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 <c.andreopoulos \at cern.ch>
12 University of Liverpool
13
14\created May 13, 2005
15
16\cpright Copyright (c) 2003-2025, 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
27namespace genie {
28
30
31public :
33 RSPPInteractionListGenerator(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 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_
Initial State information.
A vector of Interaction objects.
Summary information for an interaction.
Definition Interaction.h:56
void AddFinalStateInfo(Interaction *i, SppChannel_t chan) const
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
enum genie::ESppChannel SppChannel_t