GENIEGenerator
Loading...
Searching...
No Matches
SKInteractionListGenerator.h
Go to the documentation of this file.
1//____________________________________________________________________________
2/*!
3
4\class genie::SKInteractionListGenerator
5
6\brief Concrete implementations of the InteractionListGeneratorI interface.
7 Creates a list of all the interactions that can be generated
8 by the single-Kaon generator.
9
10\author Costas Andreopoulos <c.andreopoulos \at cern.ch>
11 University of Liverpool
12
13\created March 20, 2014
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#ifndef _SK_INTERACTION_LIST_GENERATOR_H_
21#define _SK_INTERACTION_LIST_GENERATOR_H_
22
24
25namespace genie {
26
28
29public :
30
32 SKInteractionListGenerator(string config);
34
35 // Implement the InteractionListGeneratorI interface
37
38 // Overload the Algorithm::Configure() methods to load private data
39 // members from configuration options
40 void Configure(const Registry & config);
41 void Configure(string config);
42
43private:
44
45 void LoadConfigData(void);
46
47 bool fIsCC;
48 bool fIsNC;
49};
50
51} // genie namespace
52
53#endif // _SK_INTERACTION_LIST_GENERATOR_H_
Initial State information.
A vector of Interaction objects.
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
InteractionList * CreateInteractionList(const InitialState &init) const
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25