COHHadronicSystemGenerator.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::COHHadronicSystemGenerator
5 
6 \brief Generates the f/s hadronic system in v COH pi production interactions.
7  Is a concrete implementation of the EventRecordVisitorI interface.
8 
9 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
10  University of Liverpool & STFC Rutherford Appleton Laboratory
11 
12 \created October 03, 2004
13 
14 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
15  For the full text of the license visit http://copyright.genie-mc.org
16 */
17 //____________________________________________________________________________
18 
19 #ifndef _COH_HADRONIC_SYSTEM_GENERATOR_H_
20 #define _COH_HADRONIC_SYSTEM_GENERATOR_H_
21 
23 
24 namespace genie {
25 
26  class XclsTag;
27 
29 
30  public :
34 
35  // implement the EventRecordVisitorI interface
36  void ProcessEventRecord(GHepRecord * event_rec) const;
37  void CalculateHadronicSystem_ReinSehgal(GHepRecord * event_rec) const;
38  void CalculateHadronicSystem_BergerSehgal(GHepRecord * event_rec) const;
39  void CalculateHadronicSystem_BergerSehgalFM(GHepRecord * event_rec) const;
40  void CalculateHadronicSystem_AlvarezRuso(GHepRecord * event_rec) const;
41 
42  private:
43  int getPionPDGCodeFromXclTag(const XclsTag& xcls_tag) const;
44  };
45 
46 } // genie namespace
47 #endif // _COH_HADRONIC_SYSTEM_GENERATOR_H_
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
void CalculateHadronicSystem_AlvarezRuso(GHepRecord *event_rec) const
int getPionPDGCodeFromXclTag(const XclsTag &xcls_tag) const
void CalculateHadronicSystem_ReinSehgal(GHepRecord *event_rec) const
Contains minimal information for tagging exclusive processes.
Definition: XclsTag.h:39
void CalculateHadronicSystem_BergerSehgalFM(GHepRecord *event_rec) const
static Config * config
Definition: config.cpp:1054
void CalculateHadronicSystem_BergerSehgal(GHepRecord *event_rec) const
Abstract class. Is used to pass some commonly recurring methods to all concrete implementations of th...
void ProcessEventRecord(GHepRecord *event_rec) const
Generates the f/s hadronic system in v COH pi production interactions. Is a concrete implementation o...
GENIE&#39;s GHEP MC event record.
Definition: GHepRecord.h:45