Import Geant4 5.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 10:28:22 +02:00
parent fbd4999cf7
commit 4aea781e80
5454 changed files with 223141 additions and 67347 deletions
+7 -7
View File
@@ -37,27 +37,27 @@
class G4VHCIOentry
{
public: // With description
G4VHCIOentry(G4std::string n);
G4VHCIOentry(std::string n);
// Constructor
virtual ~G4VHCIOentry() {};
virtual ~G4VHCIOentry() {}
// Destructor
public: // With description
void SetVerboseLevel(int v) { m_verbose = v; };
void SetVerboseLevel(G4int v) { m_verbose = v; }
// Set verbose level.
G4std::string GetName() { return m_name; };
std::string GetName() { return m_name; }
// Returns the name of the HC I/O manager entry
virtual void CreateHCIOmanager(G4std::string detName, G4std::string colName) {};
virtual void CreateHCIOmanager(std::string, std::string) {}
// virtual method for creating HC I/O manager for the detector
protected:
int m_verbose;
G4int m_verbose;
private:
G4std::string m_name;
std::string m_name;
}; // End of class G4VHCIOentry