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
+6 -11
View File
@@ -23,25 +23,20 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// File: G4VDCIOentry.cc
// G4VDCIOentry implementation
//
// History:
// '01.09.12 Youhei Morita Initial creation
// Author: Youhei Morita, 12.09.2001
// --------------------------------------------------------------------
#include "G4VDCIOentry.hh"
// Addtional Include:
#include "G4DCIOcatalog.hh"
// Implementation of Constructor #1
G4VDCIOentry::G4VDCIOentry(std::string n)
: m_name(n)
// --------------------------------------------------------------------
G4VDCIOentry::G4VDCIOentry(const G4String& n)
: m_name(n)
{
G4DCIOcatalog* c = G4DCIOcatalog::GetDCIOcatalog();
c->RegisterEntry(this);
m_verbose = G4PersistencyCenter::GetPersistencyCenter()->VerboseLevel();
}
// End of G4VDCIOentry.cc