#include <memory>
#include <string>
#include <utility>
#include <cmath>
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/EDProducer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/EDMException.h"
#include "DataFormats/Provenance/interface/ProductID.h"
#include "DataFormats/Common/interface/RefToBase.h"
#include "DataFormats/Common/interface/ValueMap.h"
#include "DataFormats/Math/interface/LorentzVector.h"
#include "DataFormats/Math/interface/Vector3D.h"
#include "Math/GenVector/PxPyPzM4D.h"
#include "Math/GenVector/VectorUtil.h"
#include "Math/GenVector/Boost.h"
#include "DataFormats/GeometryVector/interface/GlobalVector.h"
#include "DataFormats/VertexReco/interface/Vertex.h"
#include "DataFormats/VertexReco/interface/VertexFwd.h"
#include "DataFormats/BeamSpot/interface/BeamSpot.h"
#include "DataFormats/TrackReco/interface/Track.h"
#include "DataFormats/MuonReco/interface/Muon.h"
#include "DataFormats/MuonReco/interface/MuonFwd.h"
#include "DataFormats/MuonReco/interface/MuonSelectors.h"
#include "DataFormats/EgammaCandidates/interface/Electron.h"
#include "DataFormats/EgammaCandidates/interface/ElectronFwd.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectronFwd.h"
#include "DataFormats/GsfTrackReco/interface/GsfTrack.h"
#include "DataFormats/ParticleFlowCandidate/interface/PFCandidate.h"
#include "DataFormats/ParticleFlowCandidate/interface/PFCandidateFwd.h"
#include "DataFormats/JetReco/interface/Jet.h"
#include "DataFormats/JetReco/interface/JetTracksAssociation.h"
#include "DataFormats/BTauReco/interface/SoftLeptonTagInfo.h"
#include "TrackingTools/TransientTrack/interface/TransientTrack.h"
#include "TrackingTools/TransientTrack/interface/TransientTrackBuilder.h"
#include "TrackingTools/Records/interface/TransientTrackRecord.h"
#include "TrackingTools/IPTools/interface/IPTools.h"
#include "SoftLepton.h"
Go to the source code of this file.
Typedefs | |
typedef edm::View< reco::Electron > | ElectronView |
typedef edm::View < reco::GsfElectron > | GsfElectronView |
typedef edm::View< reco::Muon > | MuonView |
Enumerations | |
enum | AxisType { AXIS_CALORIMETRIC = 0, AXIS_CHARGED_AVERAGE = 1, AXIS_CHARGED_AVERAGE_NOLEPTON = 2, AXIS_CHARGED_SUM = 3, AXIS_CHARGED_SUM_NOLEPTON = 4, AXIS_CALORIMETRIC_NOLEPTON = 5 } |
typedef edm::View<reco::Electron> ElectronView |
Definition at line 82 of file SoftLepton.cc.
typedef edm::View<reco::GsfElectron> GsfElectronView |
Definition at line 81 of file SoftLepton.cc.
typedef edm::View<reco::Muon> MuonView |
Definition at line 83 of file SoftLepton.cc.
enum AxisType |
AXIS_CALORIMETRIC | |
AXIS_CHARGED_AVERAGE | |
AXIS_CHARGED_AVERAGE_NOLEPTON | |
AXIS_CHARGED_SUM | |
AXIS_CHARGED_SUM_NOLEPTON | |
AXIS_CALORIMETRIC_NOLEPTON |
Definition at line 67 of file SoftLepton.cc.
{ AXIS_CALORIMETRIC = 0, // use the calorimietric jet axis AXIS_CHARGED_AVERAGE = 1, // refine jet axis using charged tracks: use a pT-weighted average of (eta, phi) AXIS_CHARGED_AVERAGE_NOLEPTON = 2, // as above, without the tagging lepton track AXIS_CHARGED_SUM = 3, // refine jet axis using charged tracks: use the sum of tracks momentum AXIS_CHARGED_SUM_NOLEPTON = 4, // as above, without the tagging lepton track AXIS_CALORIMETRIC_NOLEPTON = 5 // use the calorimetric jet axis minus the lepton momentum };