CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
CombinedSVSoftLeptonComputer Class Reference

#include <CombinedSVSoftLeptonComputer.h>

Inheritance diagram for CombinedSVSoftLeptonComputer:
CombinedSVComputer

Public Member Functions

 CombinedSVSoftLeptonComputer (const edm::ParameterSet &params)
 
double flipSoftLeptonValue (double value) const
 
template<class IPTI , class SVTI >
reco::TaggingVariableList operator() (const IPTI &ipInfo, const SVTI &svInfo, const reco::CandSoftLeptonTagInfo &muonInfo, const reco::CandSoftLeptonTagInfo &elecInfo) const
 
 ~CombinedSVSoftLeptonComputer () override=default
 
- Public Member Functions inherited from CombinedSVComputer
 CombinedSVComputer (const edm::ParameterSet &params)
 
edm::ParameterSet dropDeltaR (const edm::ParameterSet &pset) const
 
template<class SVTI , class IPTI >
void fillCommonVariables (reco::TaggingVariableList &vars, reco::TrackKinematics &vertexKinematics, const IPTI &ipInfo, const SVTI &svInfo, double &vtx_track_ptSum, double &vtx_track_ESum) const
 
IterationRange flipIterate (int size, bool vertex) const
 
double flipValue (double value, bool vertex) const
 
virtual reco::TaggingVariableList operator() (const reco::TrackIPTagInfo &ipInfo, const reco::SecondaryVertexTagInfo &svInfo) const
 
virtual reco::TaggingVariableList operator() (const reco::CandIPTagInfo &ipInfo, const reco::CandSecondaryVertexTagInfo &svInfo) const
 
const reco::btag::TrackIPDatathreshTrack (const reco::CandIPTagInfo &trackIPTagInfo, const reco::btag::SortCriteria sort, const reco::Jet &jet, const GlobalPoint &pv) const
 
const reco::btag::TrackIPDatathreshTrack (const reco::TrackIPTagInfo &trackIPTagInfo, const reco::btag::SortCriteria sort, const reco::Jet &jet, const GlobalPoint &pv) const
 
virtual ~CombinedSVComputer ()=default
 

Private Attributes

bool SoftLeptonFlip
 

Detailed Description

Definition at line 14 of file CombinedSVSoftLeptonComputer.h.

Constructor & Destructor Documentation

CombinedSVSoftLeptonComputer::CombinedSVSoftLeptonComputer ( const edm::ParameterSet params)
explicit

Definition at line 7 of file CombinedSVSoftLeptonComputer.cc.

7  :
8  CombinedSVComputer(params),
9  SoftLeptonFlip(params.getParameter<bool>("SoftLeptonFlip"))
10 {
11 }
T getParameter(std::string const &) const
CombinedSVComputer(const edm::ParameterSet &params)
CombinedSVSoftLeptonComputer::~CombinedSVSoftLeptonComputer ( )
overridedefault

Member Function Documentation

double CombinedSVSoftLeptonComputer::flipSoftLeptonValue ( double  value) const
template<class IPTI , class SVTI >
reco::TaggingVariableList CombinedSVSoftLeptonComputer::operator() ( const IPTI &  ipInfo,
const SVTI &  svInfo,
const reco::CandSoftLeptonTagInfo muonInfo,
const reco::CandSoftLeptonTagInfo elecInfo 
) const

Definition at line 36 of file CombinedSVSoftLeptonComputer.h.

References reco::TaggingVariableList::checkTag(), reco::SoftLeptonProperties::deltaR, reco::SoftLeptonProperties::etaRel, reco::TaggingVariableList::finalize(), flipSoftLeptonValue(), reco::TaggingVariableList::get(), mps_fire::i, reco::TaggingVariableList::insert(), createfilelist::int, reco::btau::leptonDeltaR, reco::btau::leptonEtaRel, reco::btau::leptonPtRel, reco::btau::leptonRatio, reco::btau::leptonRatioRel, reco::TemplatedSoftLeptonTagInfo< REF >::leptons(), reco::btau::leptonSip3d, CombinedSVComputer::operator()(), reco::TemplatedSoftLeptonTagInfo< REF >::properties(), reco::btag::Vertices::PseudoVertex, reco::SoftLeptonProperties::ptRel, reco::SoftLeptonProperties::ratio, reco::SoftLeptonProperties::ratioRel, reco::btag::Vertices::RecoVertex, reco::SoftLeptonProperties::sip3d, reco::btau::vertexCategory, and reco::btau::vertexLeptonCategory.

39 {
40  using namespace reco;
41 
42  // call the inherited operator()
44 
45  //Jets with vtxCategory 99 cause problems
46  unsigned int vtxType = ( vars.checkTag(reco::btau::vertexCategory) ? (unsigned int)(vars.get(reco::btau::vertexCategory)) : 99 );
47  if (vtxType == 99)
48  return vars;
49 
50 
51  // the following is specific to soft leptons
52  int leptonCategory = 0; // 0 = no lepton, 1 = muon, 2 = electron
53 
54  for (unsigned int i = 0; i < muonInfo.leptons(); ++i) // loop over all muons, not optimal -> find the best or use ranking from best to worst
55  {
56  leptonCategory = 1; // muon category
57  const SoftLeptonProperties & propertiesMuon = muonInfo.properties(i);
58  vars.insert(btau::leptonPtRel,propertiesMuon.ptRel , true);
59  vars.insert(btau::leptonSip3d,flipSoftLeptonValue(propertiesMuon.sip3d) , true);
60  vars.insert(btau::leptonDeltaR,propertiesMuon.deltaR , true);
61  vars.insert(btau::leptonRatioRel,propertiesMuon.ratioRel , true);
62  vars.insert(btau::leptonEtaRel,propertiesMuon.etaRel , true);
63  vars.insert(btau::leptonRatio,propertiesMuon.ratio , true);
64  }
65 
66  if(leptonCategory != 1) // no soft muon found, try soft electron
67  {
68  for (unsigned int i = 0; i < elecInfo.leptons(); ++i) // loop over all electrons, not optimal -> find the best or use ranking from best to worst
69  {
70  leptonCategory = 2; // electron category
71  const SoftLeptonProperties & propertiesElec = elecInfo.properties(i);
72  vars.insert(btau::leptonPtRel,propertiesElec.ptRel , true);
73  vars.insert(btau::leptonSip3d,flipSoftLeptonValue(propertiesElec.sip3d) , true);
74  vars.insert(btau::leptonDeltaR,propertiesElec.deltaR , true);
75  vars.insert(btau::leptonRatioRel,propertiesElec.ratioRel , true);
76  vars.insert(btau::leptonEtaRel,propertiesElec.etaRel , true);
77  vars.insert(btau::leptonRatio,propertiesElec.ratio , true);
78  }
79  }
80 
81 
82  // set the default value for vertexLeptonCategory to 2 (= NoVertexNoSoftLepton)
83  int vertexLepCat = 2;
84 
85 
86  if(leptonCategory == 0) // no soft lepton
87  {
88  if (vtxType == (unsigned int)(btag::Vertices::RecoVertex))
89  vertexLepCat = 0;
90  else if (vtxType == (unsigned int)(btag::Vertices::PseudoVertex))
91  vertexLepCat = 1;
92  else
93  vertexLepCat = 2;
94  }
95  else if(leptonCategory == 1) // soft muon
96  {
97  if (vtxType == (unsigned int)(btag::Vertices::RecoVertex))
98  vertexLepCat = 3;
99  else if(vtxType == (unsigned int)(btag::Vertices::PseudoVertex))
100  vertexLepCat = 4;
101  else
102  vertexLepCat = 5;
103  }
104  else if(leptonCategory == 2) // soft electron
105  {
106  if (vtxType == (unsigned int)(btag::Vertices::RecoVertex))
107  vertexLepCat = 6;
108  else if (vtxType == (unsigned int)(btag::Vertices::PseudoVertex))
109  vertexLepCat = 7;
110  else
111  vertexLepCat = 8;
112  }
113  vars.insert(btau::vertexLeptonCategory, vertexLepCat , true);
114 
115  vars.finalize();
116  return vars;
117 }
bool checkTag(TaggingVariableName tag) const
virtual reco::TaggingVariableList operator()(const reco::TrackIPTagInfo &ipInfo, const reco::SecondaryVertexTagInfo &svInfo) const
double flipSoftLeptonValue(double value) const
const SoftLeptonProperties & properties(size_t i) const
TaggingValue get(TaggingVariableName tag) const
fixed size matrix
void insert(const TaggingVariable &variable, bool delayed=false)

Member Data Documentation

bool CombinedSVSoftLeptonComputer::SoftLeptonFlip
private

Definition at line 27 of file CombinedSVSoftLeptonComputer.h.

Referenced by flipSoftLeptonValue().