GENIEGenerator
Loading...
Searching...
No Matches
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 <c.andreopoulos \at cern.ch>
13 University of Liverpool
14
15\created September 1, 2017
16
17\cpright Copyright (c) 2003-2025, 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
30using std::multimap;
31
32namespace genie {
33
34class Interaction;
35
37
38public :
40 DMDISInteractionListGenerator(string config);
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
51private:
52
53 void LoadConfigData(void);
54
55 multimap<int,bool> GetHitQuarks(const Interaction * interaction) const;
56
57 bool fIsDM;
60};
61
62} // genie namespace
63
64#endif // _DMDIS_INTERACTION_LIST_GENERATOR_H_
multimap< int, bool > GetHitQuarks(const Interaction *interaction) const
InteractionList * CreateInteractionList(const InitialState &init) const
Initial State information.
A vector of Interaction objects.
Summary information for an interaction.
Definition Interaction.h:56
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25