Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
DefaultHepRepTreeID.cc
Go to the documentation of this file.
1// Copyright FreeHEP, 2005.
2
3#include <iostream>
4
6
7using namespace std;
8using namespace HEPREP;
9
10/**
11 * @author Mark Donszelmann
12 * @version $Id: DefaultHepRepTreeID.cc,v 1.9 2005-06-02 21:28:45 duns Exp $
13 */
14namespace cheprep {
15
16DefaultHepRepTreeID::DefaultHepRepTreeID(string aName, string aVersion, string aQualifier)
17 : name(aName), version(aVersion), qualifier(aQualifier) {
18}
19
21}
22
24 return qualifier;
25}
26
28 this->qualifier = qual;
29}
30
32 return name;
33}
34
36 return version;
37}
38
39} // cheprep
void setQualifier(std::string qualifier)
DefaultHepRepTreeID(std::string name, std::string version, std::string qualifier="top_level")