GENIEGenerator
Loading...
Searching...
No Matches
GLRESGenerator.h
Go to the documentation of this file.
1//____________________________________________________________________________
2/*!
3
4\class genie::GLRESGenerator
5
6\brief Generator for glashow resonance.
7
8\author Alfonso Garcia <aagarciasoto \at km3net.de>
9 IFIC & Harvard University
10
11\created Dec 8, 2021
12
13\cpright Copyright (c) 2003-2025, The GENIE Collaboration
14 For the full text of the license visit http://copyright.genie-mc.org
15 or see $GENIE/LICENSE
16*/
17//____________________________________________________________________________
18
19#ifndef _GLASHOW_RESONANCE_GENERATOR_H_
20#define _GLASHOW_RESONANCE_GENERATOR_H_
21
23
24using namespace genie;
25
26namespace genie {
27
29
30public :
32 GLRESGenerator(string config);
34
35 // implement the EventRecordVisitorI interface
36 void ProcessEventRecord (GHepRecord * event) const;
37
38 // Overload the Algorithm::Configure() methods to load private data
39 // members from configuration options
40 virtual void Configure(const Registry & config);
41 virtual void Configure(string config);
42
43private:
44
45 void LoadConfig (void);
46
47 const EventRecordVisitorI * fWDecayer; ///< PYTHIA W decayer
48
49};
50
51} // genie namespace
52#endif // _GLASHOW_RESONANCE_GENERATOR_H_
GENIE's GHEP MC event record.
Definition GHepRecord.h:45
void ProcessEventRecord(GHepRecord *event) const
virtual void Configure(const Registry &config)
const EventRecordVisitorI * fWDecayer
PYTHIA W decayer.
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25