PerformanceResult

ResultType

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
#ifndef PerformanceResult_h
#define PerformanceResult_h

#include "CondFormats/Serialization/interface/Serializable.h"

class PerformanceResult {
public:
  enum ResultType {
    //
    // BTAG
    //
    BTAGBEFF = 1001,
    BTAGBERR = 1002,
    BTAGCEFF = 1003,
    BTAGCERR = 1004,
    BTAGLEFF = 1005,
    BTAGLERR = 1006,
    BTAGNBEFF = 1007,
    BTAGNBERR = 1008,
    //
    // add corrections in case the table is for weights and not efficiencies
    //
    BTAGBEFFCORR = 1009,
    BTAGBERRCORR = 1010,
    BTAGCEFFCORR = 1011,
    BTAGCERRCORR = 1012,
    BTAGLEFFCORR = 1013,
    BTAGLERRCORR = 1014,
    BTAGNBEFFCORR = 1015,
    BTAGNBERRCORR = 1016,
    //
    // MUONS
    //
    MUEFF = 2001,
    MUERR = 2002,
    MUFAKE = 2003,
    MUEFAKE = 2004,
    //
    // PF - calibrations
    //
    PFfa_BARREL = 3001,
    PFfa_ENDCAP = 3002,
    PFfb_BARREL = 3003,
    PFfb_ENDCAP = 3004,
    PFfc_BARREL = 3005,
    PFfc_ENDCAP = 3006,
    PFfaEta_BARREL = 3007,
    PFfaEta_ENDCAP = 3008,
    PFfbEta_BARREL = 3009,
    PFfbEta_ENDCAP = 3010,
    PFfaEta_BARRELH = 3011,
    PFfaEta_ENDCAPH = 3012,
    PFfbEta_BARRELH = 3013,
    PFfbEta_ENDCAPH = 3014,
    PFfaEta_BARRELEH = 3015,
    PFfaEta_ENDCAPEH = 3016,
    PFfbEta_BARRELEH = 3017,
    PFfbEta_ENDCAPEH = 3018,
    //added by bhumika Nov 2018
    PFfcEta_BARRELH = 3019,
    PFfcEta_BARRELEH = 3020,
    PFfcEta_ENDCAPH = 3021,
    PFfcEta_ENDCAPEH = 3022,
    PFfdEta_ENDCAPH = 3023,
    PFfdEta_ENDCAPEH = 3024

  };

  COND_SERIALIZABLE;
};

#endif