Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:58:23

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 // G4HCIOentryT
0027 //
0028 // Class Description:
0029 //
0030 // Template class of HitsCollection I/O Manager for late binding.
0031 
0032 // Author: Youhei Morita, 12.09.2001
0033 // --------------------------------------------------------------------
0034 #ifndef G4HCIOENTRYT_HH
0035 #define G4HCIOENTRYT_HH 1
0036 
0037 #include <string>
0038 #include "G4Types.hh"
0039 #include "G4VPHitsCollectionIO.hh"
0040 
0041 #include "G4VHCIOentry.hh"
0042 
0043 template <class T>
0044 class G4HCIOentryT : public G4VHCIOentry
0045 {
0046   public:
0047 
0048     G4HCIOentryT<T>(const G4String& n) : G4VHCIOentry(n)
0049     {
0050       if(m_verbose > 2)
0051       {
0052         G4cout << "G4HCIOentryT: Registering HitsCollection IO manager"
0053                << " for \"" << n << "\"" << G4endl;
0054       }
0055     }
0056       // Constructor
0057 
0058     ~G4HCIOentryT() {}
0059       // Destructor
0060 
0061     void CreateHCIOmanager(const G4String& detName, const G4String& colName)
0062     {
0063       if(f_manager == nullptr)
0064       {
0065         f_manager = new T(detName, colName);
0066         if(m_verbose > 2)
0067         {
0068           G4cout << "G4HCIOentryT: Constructing HitsCollection IO manager"
0069                  << " for \"" << detName << "\" " << f_manager << G4endl;
0070         }
0071         G4HCIOcatalog::GetHCIOcatalog()->RegisterHCIOmanager(f_manager);
0072         if(m_verbose > 2)
0073         {
0074           G4HCIOcatalog::GetHCIOcatalog()->PrintHCIOmanager();
0075         }
0076       }
0077     }
0078       // Create a new hits collection I/O manager
0079 
0080     void DeleteHCIOmanager()
0081     {
0082       if(f_manager != nullptr)
0083         delete f_manager;
0084     }
0085       // Delete a hits collection I/O manager
0086 
0087   private:
0088 
0089     G4VPHitsCollectionIO* f_manager = nullptr;
0090 };
0091 
0092 #endif