| [818] | 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 | // not yet // #include "G4MCTEvent.hh"
|
|---|
| 36 | #include "CLHEP/HepMC/GenEvent.h"
|
|---|
| 37 |
|
|---|
| 38 | // Class Description:
|
|---|
| 39 | // Geant4 event object for store.
|
|---|
| 40 | //
|
|---|
| 41 | // This class has pointers to HepMC::GenEvent, MCTruth and G4Event.
|
|---|
| 42 | //
|
|---|
| 43 | // In the event store operation, this object will be created in the concrete
|
|---|
| 44 | // class of G4VPEventIO::Store() method, and will be deleted immediately after
|
|---|
| 45 | // creating persistent Geant4 event.
|
|---|
| 46 | //
|
|---|
| 47 | // In the event retrieve operation, this object will be created in the
|
|---|
| 48 | // concrete Persistency::Retrieve() method. The retrieved G4Pevent
|
|---|
| 49 | // has to be deleted by the user method which called the Retrieve().
|
|---|
| 50 |
|
|---|
| 51 | class G4Pevent
|
|---|
| 52 | {
|
|---|
| 53 | public: // With description
|
|---|
| 54 | // G4Pevent( HepMC::GenEvent* hepevt, G4MCTEvent* mctevt, G4Event* g4evt );
|
|---|
| 55 | G4Pevent( HepMC::GenEvent* hepevt, G4Event* g4evt );
|
|---|
| 56 | // Constructor
|
|---|
| 57 |
|
|---|
| 58 | ~G4Pevent();
|
|---|
| 59 | // Destructor
|
|---|
| 60 |
|
|---|
| 61 | public: // With description
|
|---|
| 62 | int GetEventID() { return m_id; };
|
|---|
| 63 | // returns the event ID.
|
|---|
| 64 |
|
|---|
| 65 | G4Event* GetEvent() { return f_g4evt; };
|
|---|
| 66 | // returns the G4Event.
|
|---|
| 67 |
|
|---|
| 68 | HepMC::GenEvent* GetHepMCGenEvent() { return f_hepevt; };
|
|---|
| 69 | // returns the HepMC GenEvent.
|
|---|
| 70 |
|
|---|
| 71 | // G4MCTEvent* GetMCTEvent() { return f_mctevt; };
|
|---|
| 72 | // returns the MCTruth event.
|
|---|
| 73 |
|
|---|
| 74 | int GetGenEventID() const { return genEventID; };
|
|---|
| 75 | // returns the GenEvent ID.
|
|---|
| 76 |
|
|---|
| 77 | void SetGenEventID(int id) { genEventID=id; };
|
|---|
| 78 | // set the GenEvent ID.
|
|---|
| 79 |
|
|---|
| 80 | private:
|
|---|
| 81 | HepMC::GenEvent* f_hepevt;
|
|---|
| 82 | int genEventID;
|
|---|
| 83 | // G4MCTEvent* f_mctevt;
|
|---|
| 84 | G4Event* f_g4evt;
|
|---|
| 85 | int m_id;
|
|---|
| 86 |
|
|---|
| 87 | }; // End of class G4Pevent
|
|---|
| 88 |
|
|---|
| 89 | #endif
|
|---|
| 90 |
|
|---|