Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:27

0001 #ifndef PerformanceResult_h
0002 #define PerformanceResult_h
0003 
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005 
0006 class PerformanceResult {
0007 public:
0008   enum ResultType {
0009     //
0010     // BTAG
0011     //
0012     BTAGBEFF = 1001,
0013     BTAGBERR = 1002,
0014     BTAGCEFF = 1003,
0015     BTAGCERR = 1004,
0016     BTAGLEFF = 1005,
0017     BTAGLERR = 1006,
0018     BTAGNBEFF = 1007,
0019     BTAGNBERR = 1008,
0020     //
0021     // add corrections in case the table is for weights and not efficiencies
0022     //
0023     BTAGBEFFCORR = 1009,
0024     BTAGBERRCORR = 1010,
0025     BTAGCEFFCORR = 1011,
0026     BTAGCERRCORR = 1012,
0027     BTAGLEFFCORR = 1013,
0028     BTAGLERRCORR = 1014,
0029     BTAGNBEFFCORR = 1015,
0030     BTAGNBERRCORR = 1016,
0031     //
0032     // MUONS
0033     //
0034     MUEFF = 2001,
0035     MUERR = 2002,
0036     MUFAKE = 2003,
0037     MUEFAKE = 2004,
0038     //
0039     // PF - calibrations
0040     //
0041     PFfa_BARREL = 3001,
0042     PFfa_ENDCAP = 3002,
0043     PFfb_BARREL = 3003,
0044     PFfb_ENDCAP = 3004,
0045     PFfc_BARREL = 3005,
0046     PFfc_ENDCAP = 3006,
0047     PFfaEta_BARREL = 3007,
0048     PFfaEta_ENDCAP = 3008,
0049     PFfbEta_BARREL = 3009,
0050     PFfbEta_ENDCAP = 3010,
0051     PFfaEta_BARRELH = 3011,
0052     PFfaEta_ENDCAPH = 3012,
0053     PFfbEta_BARRELH = 3013,
0054     PFfbEta_ENDCAPH = 3014,
0055     PFfaEta_BARRELEH = 3015,
0056     PFfaEta_ENDCAPEH = 3016,
0057     PFfbEta_BARRELEH = 3017,
0058     PFfbEta_ENDCAPEH = 3018,
0059     //added by bhumika Nov 2018
0060     PFfcEta_BARRELH = 3019,
0061     PFfcEta_BARRELEH = 3020,
0062     PFfcEta_ENDCAPH = 3021,
0063     PFfcEta_ENDCAPEH = 3022,
0064     PFfdEta_ENDCAPH = 3023,
0065     PFfdEta_ENDCAPEH = 3024
0066 
0067   };
0068 
0069   COND_SERIALIZABLE;
0070 };
0071 
0072 #endif