lhe.h 237 B

1234567891011121314151617
  1. #ifndef LHE_NAME_H
  2. #define LHE_NAME_H
  3. namespace LHE {
  4. const int MinNumTrackHits = 4;
  5. const int NotFittedTrackID = -999;
  6. const float TrackPurity = .6;
  7. const float MomentumLimit = 1.;
  8. const float MinMoment = .20;
  9. }
  10. #endif