IBDHadronicSystemGenerator.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::IBDHadronicSystemGenerator
5 
6 \brief Generates the final state hadronic system in v IBD interactions.
7  Is a concrete implementation of the EventRecordVisitorI interface.
8 
9 \author Corey Reed <cjreed \at nikhef.nl> - October 29, 2009
10  using code from the QELKinematicGenerator written by
11  Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
12  University of Liverpool & STFC Rutherford Appleton Laboratory
13 
14 \created October 29, 2009
15 
16 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
17  For the full text of the license visit http://copyright.genie-mc.org
18 
19 */
20 //____________________________________________________________________________
21 
22 #ifndef _IBD_HADRONIC_SYSTEM_GENERATOR_H_
23 #define _IBD_HADRONIC_SYSTEM_GENERATOR_H_
24 
26 
27 namespace genie {
28 
30 
31 public :
35 
36  // implement the EventRecordVisitorI interface
37  void ProcessEventRecord (GHepRecord * event_rec) const;
38 
39 private:
40  void AddRecoilBaryon (GHepRecord * event_rec) const;
41 };
42 
43 } // genie namespace
44 #endif // _IBD_HADRONIC_SYSTEM_GENERATOR_H_
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
void ProcessEventRecord(GHepRecord *event_rec) const
Generates the final state hadronic system in v IBD interactions. Is a concrete implementation of the ...
static Config * config
Definition: config.cpp:1054
void AddRecoilBaryon(GHepRecord *event_rec) const
Abstract class. Is used to pass some commonly recurring methods to all concrete implementations of th...
GENIE&#39;s GHEP MC event record.
Definition: GHepRecord.h:45