Import Geant4 10.7.0 source tree

This commit is contained in:
Gabriele Cosmo
2020-12-04 12:30:43 +01:00
parent 67ba86d073
commit dab42d2018
3770 changed files with 226369 additions and 286486 deletions
@@ -23,47 +23,46 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// File: G4VDCIOentry.hh
// G4VDCIOentry
//
// History:
// '01.09.12 Youhei Morita Initial creation
// Class Description:
//
// Abstract base class for digits collection I/O manager entry.
#ifndef VDCIO_ENTRY_T_HH
#define VDCIO_ENTRY_T_HH 1
// Author: Youhei Morita, 12.09.2001
// --------------------------------------------------------------------
#ifndef G4VDCIOENTRYT_HH
#define G4VDCIOENTRYT_HH 1
#include "G4Types.hh"
#include <string>
#include "G4PersistencyCenter.hh"
// Class Description:
// Abstract base class for digits collection I/O manager entry
class G4VDCIOentry
{
public: // With description
G4VDCIOentry(std::string n);
public:
G4VDCIOentry(const G4String& n);
// Constructor
virtual ~G4VDCIOentry() {}
virtual ~G4VDCIOentry() {}
// Destructor
public: // With description
void SetVerboseLevel(G4int v) { m_verbose = v; }
// Set verbose level.
void SetVerboseLevel(G4int v) { m_verbose = v; }
// Sets verbose level
std::string GetName() { return m_name; }
const G4String& GetName() { return m_name; }
// Returns the name of the DC I/O manager entry
virtual void CreateDCIOmanager(std::string, std::string) {}
virtual void CreateDCIOmanager(const G4String&, const G4String&) {}
// virtual method for creating DC I/O manager for the detector
protected:
G4int m_verbose;
protected:
private:
std::string m_name;
G4int m_verbose = 0;
}; // End of class G4VDCIOentry
private:
G4String m_name;
};
#endif