GENIEGenerator
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
QELHadronicSystemGenerator.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::QELHadronicSystemGenerator
5 
6 \brief Generates the final state hadronic system in v QEL interactions.
7  Is a concrete implementation of the EventRecordVisitorI interface.
8 
9 \author Costas Andreopoulos <c.andreopoulos \at cern.ch>
10  University of Liverpool
11 
12 \created October 03, 2004
13 
14 \cpright Copyright (c) 2003-2024, The GENIE Collaboration
15  For the full text of the license visit http://copyright.genie-mc.org
16 */
17 //____________________________________________________________________________
18 
19 #ifndef _QEL_HADRONIC_SYSTEM_GENERATOR_H_
20 #define _QEL_HADRONIC_SYSTEM_GENERATOR_H_
21 
23 
24 namespace genie {
25 
27 
28 public :
30  QELHadronicSystemGenerator(string config);
32 
33  // implement the EventRecordVisitorI interface
34  void ProcessEventRecord (GHepRecord * event_rec) const;
35 
36 private:
37  void AddRecoilBaryon (GHepRecord * event_rec) const;
38 };
39 
40 } // genie namespace
41 #endif // _QEL_HADRONIC_SYSTEM_GENERATOR_H_
void AddRecoilBaryon(GHepRecord *event_rec) const
Generates the final state hadronic system in v QEL interactions. Is a concrete implementation of the ...
void ProcessEventRecord(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