Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:23

0001 #ifndef L1Trigger_Phase2L1GT_InvariantMassError_h
0002 #define L1Trigger_Phase2L1GT_InvariantMassError_h
0003 
0004 #include <vector>
0005 
0006 namespace l1t {
0007   struct InvariantMassError {
0008     const double absoluteError_ = 0;  // GeV/c^2
0009     const double relativeError_ = 0;  // GeV/c^2 (could also be calculated)
0010     const double invariantMass_ = 0;  // GeV/c^2 (calculated without LUT)
0011   };
0012 
0013   typedef std::vector<InvariantMassError> InvariantMassErrorCollection;
0014 }  // namespace l1t
0015 
0016 #endif  // L1Trigger_Phase2L1GT_InvariantMassError_h