File indexing completed on 2024-04-06 12:27:46
0001 #ifndef RecoTauTag_RecoTau_PFRecoTauClusterVariables_h
0002 #define RecoTauTag_RecoTau_PFRecoTauClusterVariables_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #include "DataFormats/TauReco/interface/PFTau.h"
0015 #include "DataFormats/PatCandidates/interface/Tau.h"
0016 #include "DataFormats/ParticleFlowCandidate/interface/PFCandidateFwd.h"
0017 #include "DataFormats/PatCandidates/interface/PackedCandidate.h"
0018
0019 namespace reco {
0020 namespace tau {
0021
0022 float lead_track_chi2(const reco::PFTau& tau);
0023
0024 float eratio(const reco::PFTau& tau);
0025 float eratio(const pat::Tau& tau);
0026
0027
0028 float pt_weighted_dx(const reco::PFTau& tau, int mode = 0, int var = 0, int decaymode = -1);
0029 float pt_weighted_dx(const pat::Tau& tau, int mode = 0, int var = 0, int decaymode = -1);
0030
0031
0032 inline float pt_weighted_dr_signal(const reco::PFTau& tau, int dm) { return pt_weighted_dx(tau, 0, 0, dm); }
0033 inline float pt_weighted_dr_signal(const pat::Tau& tau, int dm) { return pt_weighted_dx(tau, 0, 0, dm); }
0034
0035
0036 inline float pt_weighted_deta_strip(const reco::PFTau& tau, int dm) {
0037 return pt_weighted_dx(tau, dm == 10 ? 2 : 1, 1, dm);
0038 }
0039 inline float pt_weighted_deta_strip(const pat::Tau& tau, int dm) {
0040 return pt_weighted_dx(tau, dm == 10 ? 2 : 1, 1, dm);
0041 }
0042
0043
0044 inline float pt_weighted_dphi_strip(const reco::PFTau& tau, int dm) {
0045 return pt_weighted_dx(tau, dm == 10 ? 2 : 1, 2, dm);
0046 }
0047 inline float pt_weighted_dphi_strip(const pat::Tau& tau, int dm) {
0048 return pt_weighted_dx(tau, dm == 10 ? 2 : 1, 2, dm);
0049 }
0050
0051
0052 inline float pt_weighted_dr_iso(const reco::PFTau& tau, int dm) { return pt_weighted_dx(tau, 2, 0, dm); }
0053 inline float pt_weighted_dr_iso(const pat::Tau& tau, int dm) { return pt_weighted_dx(tau, 2, 0, dm); }
0054
0055 unsigned int n_photons_total(const reco::PFTau& tau);
0056 unsigned int n_photons_total(const pat::Tau& tau);
0057
0058 enum {
0059 kOldDMwoLT,
0060 kOldDMwLT,
0061 kNewDMwoLT,
0062 kNewDMwLT,
0063 kDBoldDMwLT,
0064 kDBnewDMwLT,
0065 kPWoldDMwLT,
0066 kPWnewDMwLT,
0067 kDBoldDMwLTwGJ,
0068 kDBnewDMwLTwGJ,
0069 kDBnewDMwLTwGJPhase2
0070 };
0071 bool fillIsoMVARun2Inputs(float* mvaInput,
0072 const pat::Tau& tau,
0073 int mvaOpt,
0074 const std::string& nameCharged,
0075 const std::string& nameNeutral,
0076 const std::string& namePu,
0077 const std::string& nameOutside,
0078 const std::string& nameFootprint);
0079 }
0080 }
0081
0082 #endif