Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:59

0001 #ifndef MuonIdentification_TimeMeasurementSequence_h
0002 #define MuonIdentification_TimeMeasurementSequence_h
0003 
0004 /** \class reco::TimeMeasurementSequence TimeMeasurementSequence.h RecoMuon/MuonIdentification/interface/TimeMeasurementSequence.h
0005  *  
0006  * A class holding a set of individual time measurements along the muon trajectory
0007  *
0008  * \author Piotr Traczyk, CERN
0009  *
0010  *
0011  */
0012 
0013 #include <vector>
0014 
0015 class TimeMeasurementSequence {
0016 public:
0017   std::vector<double> dstnc;
0018   std::vector<double> local_t0;
0019   std::vector<double> weightTimeVtx;
0020   std::vector<double> weightInvbeta;
0021 
0022   double totalWeightInvbeta;
0023   double totalWeightTimeVtx;
0024 
0025   TimeMeasurementSequence() : totalWeightInvbeta(0), totalWeightTimeVtx(0) {}
0026 };
0027 
0028 #endif