File indexing completed on 2023-03-17 11:11:49
0001
0002
0003
0004
0005
0006 #ifndef JETCALIBRATIONMETHODS_H
0007 #define JETCALIBRATIONMETHODS_H
0008
0009 #include "L1Trigger/L1TCalorimeter/interface/CaloParamsHelper.h"
0010 #include "DataFormats/L1Trigger/interface/Jet.h"
0011
0012 #include <vector>
0013
0014 namespace l1t {
0015
0016 void JetCalibration(std::vector<l1t::Jet>* uncalibjets,
0017 std::vector<double> jetCalibrationParams,
0018 std::vector<l1t::Jet>* jets,
0019 std::string jetCalibrationType,
0020 double jetLSB);
0021
0022 }
0023
0024 #endif