Classes | |
struct | Plots |
Public Member Functions | |
virtual void | analyze (const edm::Event &event, const edm::EventSetup &es) |
virtual void | beginJob () |
PatTrackAnalyzer (const edm::ParameterSet ¶ms) | |
constructor and destructor | |
~PatTrackAnalyzer () | |
Private Attributes | |
edm::InputTag | beamSpot_ |
std::vector< Plots > | plots_ |
std::vector< std::string > | qualities_ |
edm::InputTag | src_ |
Definition at line 25 of file PatTrackAnalyzer.cc.
PatTrackAnalyzer::PatTrackAnalyzer | ( | const edm::ParameterSet & | params | ) |
constructor and destructor
Definition at line 60 of file PatTrackAnalyzer.cc.
: src_(params.getParameter<edm::InputTag>("src")), beamSpot_(params.getParameter<edm::InputTag>("beamSpot")), qualities_(params.getParameter< std::vector<std::string> >("qualities")) { }
PatTrackAnalyzer::~PatTrackAnalyzer | ( | ) |
Definition at line 67 of file PatTrackAnalyzer.cc.
{ }
void PatTrackAnalyzer::analyze | ( | const edm::Event & | event, |
const edm::EventSetup & | es | ||
) | [virtual] |
Implements edm::EDAnalyzer.
Definition at line 138 of file PatTrackAnalyzer.cc.
References abs, SiPixelRawToDigiRegional_cfi::beamSpot, beamSpot_, PatTrackAnalyzer::Plots::d0, PatTrackAnalyzer::Plots::d0Err, reco::TrackBase::dxy(), reco::TrackBase::dxyError(), PatTrackAnalyzer::Plots::eta, reco::TrackBase::eta(), reco::TrackBase::hitPattern(), i, PatTrackAnalyzer::Plots::invPt, PatTrackAnalyzer::Plots::invPtErr, edm::Ref< C, T, F >::isNonnull(), edm::HandleBase::isValid(), PatTrackAnalyzer::Plots::nHits, reco::TrackBase::numberOfValidHits(), reco::HitPattern::numberOfValidPixelBarrelHits(), reco::HitPattern::numberOfValidPixelEndcapHits(), reco::HitPattern::numberOfValidStripTECHits(), reco::HitPattern::numberOfValidStripTIBHits(), reco::HitPattern::numberOfValidStripTIDHits(), reco::HitPattern::numberOfValidStripTOBHits(), reco::TrackBase::phi(), PatTrackAnalyzer::Plots::phi, RecoTauValidation_cfi::plots, plots_, reco::TrackBase::pt(), PatTrackAnalyzer::Plots::pt, PatTrackAnalyzer::Plots::ptErr, reco::TrackBase::ptError(), PatTrackAnalyzer::Plots::pxbHitsEta, PatTrackAnalyzer::Plots::pxeHitsEta, reco::TrackBase::qoverp(), reco::TrackBase::qoverpError(), qualities_, reco::TrackBase::quality(), reco::TrackBase::qualityByName(), src_, PatTrackAnalyzer::Plots::tecHitsEta, PatTrackAnalyzer::Plots::tibHitsEta, PatTrackAnalyzer::Plots::tidHitsEta, PatTrackAnalyzer::Plots::tobHitsEta, and testEve_cfg::tracks.
{ // handles to kinds of data we might want to read edm::Handle<reco::BeamSpot> beamSpot; edm::Handle< edm::View<reco::Track> > tracksHandle; edm::Handle< pat::MuonCollection > muonsHandle; // read the beam spot event.getByLabel(beamSpot_, beamSpot); // our internal copy of track points // (we need this in order to able to simultaneously access tracks // directly or embedded in PAT objects, like muons, normally you // would iterate over the handle directly) std::vector<const reco::Track*> tracks; event.getByLabel(src_, tracksHandle); if (tracksHandle.isValid()) { // framework was able to read the collection as a view of // tracks, no copy them to our "tracks" variable for(edm::View<reco::Track>::const_iterator iter = tracksHandle->begin(); iter != tracksHandle->end(); ++iter) tracks.push_back(&*iter); } else { // does not exist or is not a track collection // let's assume it is a collection of PAT muons event.getByLabel(src_, muonsHandle); // and copy them over // NOTE: We are using ->globalTrack() here // This means we are using the global fit over both // the inner tracker and the muon stations! // other alternatives are: innerTrack(), outerTrack() for(pat::MuonCollection::const_iterator iter = muonsHandle->begin(); iter != muonsHandle->end(); ++iter) { reco::TrackRef track = iter->globalTrack(); // the muon might not be a "global" muon if (track.isNonnull()) tracks.push_back(&*track); } } // we are done filling the tracks into our "tracks" vector. // now analyze them, once for each track quality category unsigned int nQualities = qualities_.size(); for(unsigned int i = 0; i < nQualities; ++i) { // we convert the quality flag from its name as a string // to the enumeration value used by the tracking code // (which is essentially an integer number) reco::Track::TrackQuality quality = reco::Track::qualityByName(qualities_[i]); // our set of plots Plots &plots = plots_[i]; // now loop over the tracks for(std::vector<const reco::Track*>::const_iterator iter = tracks.begin(); iter != tracks.end(); ++iter) { // this is our track const reco::Track &track = **iter; // ignore tracks that fail the quality cut if (!track.quality(quality)) continue; // and fill all the plots plots.eta->Fill(track.eta()); plots.phi->Fill(track.phi()); plots.pt->Fill(track.pt()); plots.ptErr->Fill(track.ptError()); plots.invPt->Fill(track.qoverp()); plots.invPtErr->Fill(track.qoverpError()); // the transverse IP is taken with respect to // the beam spot instead of (0, 0) // because the beam spot in CMS is not at (0, 0) plots.d0->Fill(track.dxy(beamSpot->position())); plots.d0Err->Fill(track.dxyError()); plots.nHits->Fill(track.numberOfValidHits()); // the hit pattern contains information about // which modules of the detector have been hit const reco::HitPattern &hits = track.hitPattern(); double absEta = std::abs(track.eta()); // now fill the number of hits in a layer depending on eta plots.pxbHitsEta->Fill(absEta, hits.numberOfValidPixelBarrelHits()); plots.pxeHitsEta->Fill(absEta, hits.numberOfValidPixelEndcapHits()); plots.tibHitsEta->Fill(absEta, hits.numberOfValidStripTIBHits()); plots.tobHitsEta->Fill(absEta, hits.numberOfValidStripTOBHits()); plots.tidHitsEta->Fill(absEta, hits.numberOfValidStripTIDHits()); plots.tecHitsEta->Fill(absEta, hits.numberOfValidStripTECHits()); } } }
void PatTrackAnalyzer::beginJob | ( | void | ) | [virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 71 of file PatTrackAnalyzer.cc.
References PatTrackAnalyzer::Plots::d0, PatTrackAnalyzer::Plots::d0Err, PatTrackAnalyzer::Plots::eta, i, PatTrackAnalyzer::Plots::invPt, PatTrackAnalyzer::Plots::invPtErr, M_PI, PatTrackAnalyzer::Plots::nHits, PatTrackAnalyzer::Plots::phi, RecoTauValidation_cfi::plots, plots_, PatTrackAnalyzer::Plots::pt, PatTrackAnalyzer::Plots::ptErr, PatTrackAnalyzer::Plots::pxbHitsEta, PatTrackAnalyzer::Plots::pxeHitsEta, qualities_, PatTrackAnalyzer::Plots::tecHitsEta, PatTrackAnalyzer::Plots::tibHitsEta, PatTrackAnalyzer::Plots::tidHitsEta, and PatTrackAnalyzer::Plots::tobHitsEta.
{ // retrieve handle to auxiliary service // used for storing histograms into ROOT file edm::Service<TFileService> fs; // now book the histograms, for each category unsigned int nQualities = qualities_.size(); plots_.resize(nQualities); for(unsigned int i = 0; i < nQualities; ++i) { // the name of the quality flag const char *quality = qualities_[i].c_str(); // the set of plots Plots &plots = plots_[i]; plots.eta = fs->make<TH1F>(Form("eta_%s", quality), Form("track \\eta (%s)", quality), 100, -3, 3); plots.phi = fs->make<TH1F>(Form("phi_%s", quality), Form("track \\phi (%s)", quality), 100, -M_PI, +M_PI); plots.pt = fs->make<TH1F>(Form("pt_%s", quality), Form("track p_{T} (%s)", quality), 100, 0, 10); plots.ptErr = fs->make<TH1F>(Form("ptErr_%s", quality), Form("track p_{T} error (%s)", quality), 100, 0, 1); plots.invPt = fs->make<TH1F>(Form("invPt_%s", quality), Form("track 1/p_{T} (%s)", quality), 100, -5, 5); plots.invPtErr = fs->make<TH1F>(Form("invPtErr_%s", quality), Form("track 1/p_{T} error (%s)", quality), 100, 0, 0.1); plots.d0 = fs->make<TH1F>(Form("d0_%s", quality), Form("track d0 (%s)", quality), 100, 0, 0.1); plots.d0Err = fs->make<TH1F>(Form("d0Err_%s", quality), Form("track d0 error (%s)", quality), 100, 0, 0.1); plots.nHits = fs->make<TH1F>(Form("nHits_%s", quality), Form("track number of total hits (%s)", quality), 60, 0, 60); plots.pxbHitsEta = fs->make<TProfile>(Form("pxbHitsEta_%s", quality), Form("#hits in Pixel Barrel (%s)", quality), 100, 0, 3); plots.pxeHitsEta = fs->make<TProfile>(Form("pxeHitsEta_%s", quality), Form("#hits in Pixel Endcap (%s)", quality), 100, 0, 3); plots.tibHitsEta = fs->make<TProfile>(Form("tibHitsEta_%s", quality), Form("#hits in Tracker Inner Barrel (%s)", quality), 100, 0, 3); plots.tobHitsEta = fs->make<TProfile>(Form("tobHitsEta_%s", quality), Form("#hits in Tracker Outer Barrel (%s)", quality), 100, 0, 3); plots.tidHitsEta = fs->make<TProfile>(Form("tidHitsEta_%s", quality), Form("#hits in Tracker Inner Disk (%s)", quality), 100, 0, 3); plots.tecHitsEta = fs->make<TProfile>(Form("tecHitsEta_%s", quality), Form("#hits in Tracker Endcap (%s)", quality), 100, 0, 3); } }
edm::InputTag PatTrackAnalyzer::beamSpot_ [private] |
Definition at line 38 of file PatTrackAnalyzer.cc.
Referenced by analyze().
std::vector<Plots> PatTrackAnalyzer::plots_ [private] |
Definition at line 56 of file PatTrackAnalyzer.cc.
Referenced by analyze(), and beginJob().
std::vector<std::string> PatTrackAnalyzer::qualities_ [private] |
Definition at line 41 of file PatTrackAnalyzer.cc.
Referenced by analyze(), and beginJob().
edm::InputTag PatTrackAnalyzer::src_ [private] |
Definition at line 37 of file PatTrackAnalyzer.cc.
Referenced by analyze().