PicoDstRecoTrack.cxx 434 B

1234567891011121314151617181920212223242526272829
  1. #include "PicoDstRecoTrack.h"
  2. ClassImp(PicoDstRecoTrack);
  3. PicoDstRecoTrack::PicoDstRecoTrack()
  4. {
  5. }
  6. PicoDstRecoTrack::~PicoDstRecoTrack()
  7. {
  8. Clear();
  9. }
  10. void PicoDstRecoTrack::Clear(Option_t *option)
  11. {
  12. PicoDstBaseTrack::Clear(option);
  13. fId = 0;
  14. fTofFlag = 0;
  15. fTpcdEdx = 0.;
  16. fTofMass2 = 0.;
  17. fPidProbPion = 0.;
  18. fPidProbKaon = 0.;
  19. fPidProbProton = 0.;
  20. fChi2 = 0.;
  21. fNhits = 0;
  22. fNhitsPoss = 0;
  23. fChargeSign = 0;
  24. }