GENIEGenerator
Loading...
Searching...
No Matches
PhotonCOHGenerator.cxx
Go to the documentation of this file.
1//____________________________________________________________________________
2/*
3 Copyright (c) 2003-2025, The GENIE Collaboration
4 For the full text of the license visit http://copyright.genie-mc.org
5
6 Alfonso Garcia <aagarciasoto \at km3net.de>
7 IFIC & Harvard University
8*/
9//____________________________________________________________________________
10
12
13//___________________________________________________________________________
15EventRecordVisitorI("genie::PhotonCOHGenerator")
16{
17}
18//___________________________________________________________________________
20EventRecordVisitorI("genie::PhotonCOHGenerator", config)
21{
22}
23//___________________________________________________________________________
28//___________________________________________________________________________
30{
31
32 fWDecayer->ProcessEventRecord(event);
33
34}
35//____________________________________________________________________________
37{
39 this->LoadConfig();
40}
41//____________________________________________________________________________
43{
45 this->LoadConfig();
46}
47//____________________________________________________________________________
49{
50
51 fWDecayer = dynamic_cast<const EventRecordVisitorI *> (this->SubAlg("WDecayer"));
52 assert(fWDecayer);
53
54}
55//____________________________________________________________________________
virtual void Configure(const Registry &config)
Definition Algorithm.cxx:62
const Algorithm * SubAlg(const RgKey &registry_key) const
GENIE's GHEP MC event record.
Definition GHepRecord.h:45
const EventRecordVisitorI * fWDecayer
PYTHIA W decayer.
virtual void Configure(const Registry &config)
void ProcessEventRecord(GHepRecord *event) const
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65