Import Geant4 5.2.0 source tree
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user