Go to the documentation of this file.00001 #ifndef HCALTBPARTICLEID_H
00002 #define HCALTBPARTICLEID_H 1
00003
00004 #include <string>
00005 #include <iostream>
00006 #include <vector>
00007 #include "boost/cstdint.hpp"
00008
00009 class HcalTBParticleId {
00010 public:
00011 HcalTBParticleId();
00012
00013
00014
00015 double TOF() const { return TOF_; }
00016
00017 private:
00018 double TOF_ ;
00019
00020
00021 };
00022
00023 std::ostream& operator<<(std::ostream& s, const HcalTBParticleId& htbpid);
00024
00025 #endif