Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4HCIOentryT< T > Class Template Reference

#include <G4HCIOentryT.hh>

+ Inheritance diagram for G4HCIOentryT< T >:

Public Member Functions

 G4HCIOentryT (const G4String &n)
 
 ~G4HCIOentryT ()
 
void CreateHCIOmanager (const G4String &detName, const G4String &colName)
 
void DeleteHCIOmanager ()
 
- Public Member Functions inherited from G4VHCIOentry
 G4VHCIOentry (const G4String &n)
 
virtual ~G4VHCIOentry ()
 
void SetVerboseLevel (G4int v)
 
const G4StringGetName ()
 

Additional Inherited Members

- Protected Attributes inherited from G4VHCIOentry
G4int m_verbose = 0
 

Detailed Description

template<class T>
class G4HCIOentryT< T >

Definition at line 43 of file G4HCIOentryT.hh.

Constructor & Destructor Documentation

◆ G4HCIOentryT()

template<class T>
G4HCIOentryT< T >::G4HCIOentryT ( const G4String & n)
inline

Definition at line 1 of file G4HCIOentryT.hh.

48 {
49 if(m_verbose > 2)
50 {
51 G4cout << "G4HCIOentryT: Registering HitsCollection IO manager"
52 << " for \"" << n << "\"" << G4endl;
53 }
54 }
G4VHCIOentry(const G4String &n)

◆ ~G4HCIOentryT()

template<class T>
G4HCIOentryT< T >::~G4HCIOentryT ( )
inline

Definition at line 57 of file G4HCIOentryT.hh.

57{}

Member Function Documentation

◆ CreateHCIOmanager()

template<class T>
void G4HCIOentryT< T >::CreateHCIOmanager ( const G4String & detName,
const G4String & colName )
inlinevirtual

Reimplemented from G4VHCIOentry.

Definition at line 60 of file G4HCIOentryT.hh.

61 {
62 if(f_manager == nullptr)
63 {
64 f_manager = new T(detName, colName);
65 if(m_verbose > 2)
66 {
67 G4cout << "G4HCIOentryT: Constructing HitsCollection IO manager"
68 << " for \"" << detName << "\" " << f_manager << G4endl;
69 }
71 if(m_verbose > 2)
72 {
74 }
75 }
76 }
void PrintHCIOmanager()
static G4HCIOcatalog * GetHCIOcatalog()
void RegisterHCIOmanager(G4VPHitsCollectionIO *d)

◆ DeleteHCIOmanager()

template<class T>
void G4HCIOentryT< T >::DeleteHCIOmanager ( )
inline

Definition at line 79 of file G4HCIOentryT.hh.

80 {
81 if(f_manager != nullptr)
82 delete f_manager;
83 }

The documentation for this class was generated from the following file: