Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4Pevent.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// File: G4Pevent.hh
27//
28// History:
29// '01.11.18 Youhei Morita Initial creation
30
31#ifndef G4PEVENT_HH
32#define G4PEVENT_HH 1
33
34#include "G4Event.hh"
35#include "G4MCTEvent.hh"
36
37// Class Description:
38// Geant4 event object for store.
39//
40// This class has pointers to MCTruth and G4Event.
41//
42// In the event store operation, this object will be created in the concrete
43// class of G4VPEventIO::Store() method, and will be deleted immediately after
44// creating persistent Geant4 event.
45//
46// In the event retrieve operation, this object will be created in the
47// concrete Persistency::Retrieve() method. The retrieved G4Pevent
48// has to be deleted by the user method which called the Retrieve().
49
51{
52 public: // With description
53 G4Pevent( G4MCTEvent* mctevt, G4Event* g4evt );
54 // Constructor
55
56 ~G4Pevent();
57 // Destructor
58
59 public: // With description
60 int GetEventID() { return m_id; };
61 // returns the event ID.
62
63 G4Event* GetEvent() { return f_g4evt; };
64 // returns the G4Event.
65
66 G4MCTEvent* GetMCTEvent() { return f_mctevt; };
67 // returns the MCTruth event.
68
69 int GetGenEventID() const { return genEventID; };
70 // returns the GenEvent ID.
71
72 void SetGenEventID(int id) { genEventID=id; };
73 // set the GenEvent ID.
74
75 private:
76 int genEventID;
77 G4MCTEvent* f_mctevt;
78 G4Event* f_g4evt;
79 int m_id;
80
81}; // End of class G4Pevent
82
83#endif
84
int GetGenEventID() const
Definition: G4Pevent.hh:69
G4Event * GetEvent()
Definition: G4Pevent.hh:63
void SetGenEventID(int id)
Definition: G4Pevent.hh:72
G4MCTEvent * GetMCTEvent()
Definition: G4Pevent.hh:66
~G4Pevent()
Definition: G4Pevent.cc:40
int GetEventID()
Definition: G4Pevent.hh:60