// MAUS WARNING: THIS IS LEGACY CODE. // MCHit.cc #include "Interface/MCHit.hh" MCHit::MCHit() { _trackID = -1; } MCHit::MCHit( int id, int pdg, double q, double m, Hep3Vector pos, Hep3Vector mom, double t, double de, double e, Hep3Vector spin ) { _trackID = id; _pdg = pdg; _charge = q; _mass = m; _position = pos; _momentum = mom; _time = t; _edep = de; _energy = e; _spin = spin; }