DMDISInteractionListGenerator.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::DMDISInteractionListGenerator
5 
6 \brief Concrete implementations of the InteractionListGeneratorI interface.
7  Generate a list of all the Interaction (= event summary) objects that
8  can be generated by the DMDIS EventGenerator.
9 
10 \author Joshua Berger <jberger \at physics.wisc.edu
11  University of Wisconsin-Madison
12  Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
13  University of Liverpool & STFC Rutherford Appleton Laboratory
14 
15 \created September 1, 2017
16 
17 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
18  For the full text of the license visit http://copyright.genie-mc.org
19 
20 */
21 //____________________________________________________________________________
22 
23 #ifndef _DMDIS_INTERACTION_LIST_GENERATOR_H_
24 #define _DMDIS_INTERACTION_LIST_GENERATOR_H_
25 
26 #include <map>
27 
29 
30 using std::multimap;
31 
32 namespace genie {
33 
34 class Interaction;
35 
37 
38 public :
42 
43  // implement the InteractionListGeneratorI interface
45 
46  // overload the Algorithm::Configure() methods to load private data
47  // members from configuration options
48  void Configure(const Registry & config);
49  void Configure(string config);
50 
51 private:
52 
53  void LoadConfigData(void);
54 
55  multimap<int,bool> GetHitQuarks(const Interaction * interaction) const;
56 
57  bool fIsDM;
59  bool fIsCharm;
60 };
61 
62 } // genie namespace
63 
64 #endif // _DMDIS_INTERACTION_LIST_GENERATOR_H_
Concrete implementations of the InteractionListGeneratorI interface. Generate a list of all the Inter...
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
Defines the InteractionListGeneratorI interface. Concrete implementations of this interface generate ...
init
Definition: train.py:42
InteractionList * CreateInteractionList(const InitialState &init) const
multimap< int, bool > GetHitQuarks(const Interaction *interaction) const
Summary information for an interaction.
Definition: Interaction.h:56
static Config * config
Definition: config.cpp:1054
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