// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // G4PersistencyManagerT // // Class Description: // // Template class of G4PersistencyManager for late binding. // Author: Youhei Morita, 10.08.2001 // -------------------------------------------------------------------- #ifndef G4PERSISTENCYMANAGERT_HH #define G4PERSISTENCYMANAGERT_HH 1 #include "G4PersistencyCenter.hh" #include "G4PersistencyManager.hh" template class G4PersistencyManagerT : public G4PersistencyManager { public: G4PersistencyManagerT(G4PersistencyCenter* pc, const G4String& n) : G4PersistencyManager(pc, n) { if(m_verbose > 2) { G4cout << "G4PersistencyManagerT: Registering G4PersistencyManager \"" << n << "\"" << G4endl; } G4PersistencyCenter::GetPersistencyCenter() ->RegisterPersistencyManager(this); } // Constructor ~G4PersistencyManagerT() {} // Destructor G4PersistencyManager* Create() { pm = new T(f_pc, GetName()); return pm; } // Create a new persistency manager void Delete() { if(pm != nullptr) delete pm; } // Delete a persistency mamanger G4VPEventIO* EventIO() { if(pm != nullptr) return pm->EventIO(); else return nullptr; } // Returns the current event I/O handling manager G4VPHitIO* HitIO() { if(pm != nullptr) return pm->HitIO(); else return nullptr; } // Returns the current hit I/O handling manager G4VPDigitIO* DigitIO() { if(pm != nullptr) return pm->DigitIO(); else return nullptr; } // Returns the current digit I/O handling manager G4VHepMCIO* HepMCIO() { if(pm != nullptr) return pm->HepMCIO(); else return nullptr; } // Returns the current digit I/O handling manager G4VMCTruthIO* MCTruthIO() { if(pm != nullptr) return pm->MCTruthIO(); else return nullptr; } // Returns the current digit I/O handling manager G4VTransactionManager* TransactionManager() { if(pm != nullptr) return pm->TransactionManager(); else return nullptr; } // Returns the current transaction manager void Initialize() {} // Initialize the persistency package. void SetVerboseLevel(G4int v) { if(pm != nullptr) return pm->SetVerboseLevel(); else return nullptr; } // Sets the verbose level to the persistency manager private: G4PersistencyManager* pm = nullptr; }; #endif