Changeset 402 in svn for trunk/interface
- Timestamp:
- May 20, 2009, 10:36:42 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/PdgParticle.h
r386 r402 7 7 class PdgParticle { 8 8 public: 9 PdgParticle(): _pid(-999), _mass(0), _charge(0), _gamma_tot(0), _ tau(0), _name("Unknown") {};10 PdgParticle(const int pid, const std::string& name, const float m, const float q, const float gamma, const float tau);9 PdgParticle(): _pid(-999), _mass(0), _charge(0), _gamma_tot(0), _ctau(0), _name("Unknown") {}; 10 PdgParticle(const int pid, const std::string& name, const float m, const float q, const float gamma, const float ctau); 11 11 PdgParticle(const PdgParticle& p); 12 12 PdgParticle& operator=(const PdgParticle& p); … … 16 16 float charge() const {return _charge;}; 17 17 float gamma_tot() const {return _gamma_tot;}; 18 float tau() const {return _tau;};18 double ctau() const {return _ctau;}; 19 19 std::string name() const {return _name;}; 20 20 … … 23 23 float _mass; // GeV 24 24 float _charge; // in e+ 25 float _gamma_tot; 26 float _tau;25 float _gamma_tot; // GeV 26 double _ctau; // in m 27 27 std::string _name; 28 28 };
Note:
See TracChangeset
for help on using the changeset viewer.