#include <ResidualRefitting.h>
Definition at line 38 of file ResidualRefitting.h.
ResidualRefitting::ResidualRefitting | ( | const edm::ParameterSet & | cfg | ) | [explicit] |
Definition at line 44 of file ResidualRefitting.cc.
References edm::ParameterSet::getParameter(), MuonServiceProxy_cff::MuonServiceProxy, and theService.
: outputFileName_ ( cfg.getUntrackedParameter<std::string>("histoutputFile") ), PropagatorSource_ ( cfg.getParameter<std::string>("propagator")), muons_ ( cfg.getParameter<edm::InputTag>( "muons" ) ), muonsRemake_ ( cfg.getParameter<edm::InputTag>("muonsRemake" ) ), //This Feels Misalignment muonsNoStation1_ ( cfg.getParameter<edm::InputTag>("muonsNoStation1") ), muonsNoStation2_ ( cfg.getParameter<edm::InputTag>("muonsNoStation2") ), muonsNoStation3_ ( cfg.getParameter<edm::InputTag>("muonsNoStation3") ), muonsNoStation4_ ( cfg.getParameter<edm::InputTag>("muonsNoStation4") ), /* muonsNoPXBLayer1_ ( cfg.getParameter<edm::InputTag>("muonsNoPXBLayer1" ) ), muonsNoPXBLayer2_ ( cfg.getParameter<edm::InputTag>("muonsNoPXBLayer1" ) ), muonsNoPXBLayer3_ ( cfg.getParameter<edm::InputTag>("muonsNoPXBLayer1" ) ), muonsNoTIBLayer1_ ( cfg.getParameter<edm::InputTag>("muonsNoTIBLayer1" ) ), muonsNoTIBLayer2_ ( cfg.getParameter<edm::InputTag>("muonsNoTIBLayer2" ) ), muonsNoTIBLayer3_ ( cfg.getParameter<edm::InputTag>("muonsNoTIBLayer3" ) ), muonsNoTIBLayer4_ ( cfg.getParameter<edm::InputTag>("muonsNoTIBLayer4" ) ), muonsNoTOBLayer1_ ( cfg.getParameter<edm::InputTag>("muonsNoTOBLayer1" ) ), muonsNoTOBLayer2_ ( cfg.getParameter<edm::InputTag>("muonsNoTOBLayer2" ) ), muonsNoTOBLayer3_ ( cfg.getParameter<edm::InputTag>("muonsNoTOBLayer3" ) ), muonsNoTOBLayer4_ ( cfg.getParameter<edm::InputTag>("muonsNoTOBLayer4" ) ), muonsNoTOBLayer5_ ( cfg.getParameter<edm::InputTag>("muonsNoTOBLayer5" ) ), muonsNoTOBLayer6_ ( cfg.getParameter<edm::InputTag>("muonsNoTOBLayer6" ) ),*/ debug_ ( cfg.getUntrackedParameter<bool>("doDebug" ) ) { // service parameters edm::ParameterSet serviceParameters = cfg.getParameter<edm::ParameterSet>("ServiceParameters"); // the services theService = new MuonServiceProxy(serviceParameters); } //The constructor
ResidualRefitting::~ResidualRefitting | ( | ) |
Definition at line 267 of file ResidualRefitting.cc.
References outputFile_.
{ delete outputFile_; }
void ResidualRefitting::analyze | ( | const edm::Event & | event, |
const edm::EventSetup & | eventSetup | ||
) | [virtual] |
Implements edm::EDAnalyzer.
Definition at line 80 of file ResidualRefitting.cc.
References CollectTrackHits(), gather_cfg::cout, cylExtrapTrkSam(), debug_, dumpTrackRef(), edm::EventID::event(), eventInfo_, ResidualRefitting::storage_event::evtNum_, edm::EventSetup::get(), edm::EventBase::id(), metsig::muon, muonInfo(), ExpressReco_HICollisions_FallBack::muons, muons_, muonsNoStation1_, muonsNoStation2_, muonsNoStation3_, muonsNoStation4_, muonsRemake_, ResidualRefitting::storage_trackExtrap::n_, ResidualRefitting::storage_muon::n_, N_MAX_STORED, NewTrackMeasurements(), outputBranch_, outputTree_, PropagatorSource_, edm::EventID::run(), ResidualRefitting::storage_event::runNum_, samExtrap120_, storageGmrNew_, storageTrackExtrapRec_, storageTrackExtrapRecNoSt1_, storageTrackExtrapRecNoSt2_, storageTrackExtrapRecNoSt3_, storageTrackExtrapRecNoSt4_, theField, thePropagator, theService, trackExtrap120_, MuonServiceProxy::update(), and zero_storage().
{ if(debug_) printf("STARTING EVENT\n"); eventInfo_.evtNum_ = (int)event.id().run(); eventInfo_.runNum_ = (int)event.id().event(); // Generator Collection // The original muon collection that is sitting in memory edm::Handle<reco::MuonCollection> muons; edm::Handle<reco::TrackCollection> muonTracks; edm::Handle<reco::TrackCollection> muonsNoSt1; edm::Handle<reco::TrackCollection> muonsNoSt2; edm::Handle<reco::TrackCollection> muonsNoSt3; edm::Handle<reco::TrackCollection> muonsNoSt4; event.getByLabel(muons_ , muons ); //set label to muons event.getByLabel(muonsRemake_ , muonTracks); event.getByLabel(muonsNoStation1_ , muonsNoSt1); event.getByLabel(muonsNoStation2_ , muonsNoSt2); event.getByLabel(muonsNoStation3_ , muonsNoSt3); event.getByLabel(muonsNoStation4_ , muonsNoSt4); /* // std::cout<<"Muon Collection No PXB "<<std::endl; //Tracker Barrel Pixel Refits edm::Handle<MuonCollection> muonsNoPXBLayer1Coll; event.getByLabel(muonsNoPXBLayer1_, muonsNoPXBLayer1Coll); edm::Handle<MuonCollection> muonsNoPXBLayer2Coll; event.getByLabel(muonsNoPXBLayer2_, muonsNoPXBLayer2Coll); edm::Handle<MuonCollection> muonsNoPXBLayer3Coll; event.getByLabel(muonsNoPXBLayer3_, muonsNoPXBLayer3Coll); // std::cout<<"Muon Collection No TIB "<<std::endl; // Tracker Inner Barrel Refits edm::Handle<MuonCollection> muonsNoTIBLayer1Coll; event.getByLabel(muonsNoTIBLayer1_, muonsNoTIBLayer1Coll); edm::Handle<MuonCollection> muonsNoTIBLayer2Coll; event.getByLabel(muonsNoTIBLayer2_, muonsNoTIBLayer2Coll); edm::Handle<MuonCollection> muonsNoTIBLayer3Coll; event.getByLabel(muonsNoTIBLayer3_, muonsNoTIBLayer3Coll); edm::Handle<MuonCollection> muonsNoTIBLayer4Coll; event.getByLabel(muonsNoTIBLayer4_, muonsNoTIBLayer4Coll); // std::cout<<"Muon Collection No TOB "<<std::endl; //Tracker outer barrel refits edm::Handle<MuonCollection> muonsNoTOBLayer1Coll; event.getByLabel(muonsNoTOBLayer1_, muonsNoTOBLayer1Coll); edm::Handle<MuonCollection> muonsNoTOBLayer2Coll; event.getByLabel(muonsNoTOBLayer2_, muonsNoTOBLayer2Coll); edm::Handle<MuonCollection> muonsNoTOBLayer3Coll; event.getByLabel(muonsNoTOBLayer3_, muonsNoTOBLayer3Coll); edm::Handle<MuonCollection> muonsNoTOBLayer4Coll; event.getByLabel(muonsNoTOBLayer4_, muonsNoTOBLayer4Coll); edm::Handle<MuonCollection> muonsNoTOBLayer5Coll; event.getByLabel(muonsNoTOBLayer5_, muonsNoTOBLayer5Coll); edm::Handle<MuonCollection> muonsNoTOBLayer6Coll; event.getByLabel(muonsNoTOBLayer6_, muonsNoTOBLayer6Coll); */ //magnetic field information edm::ESHandle<MagneticField> field; edm::ESHandle<GlobalTrackingGeometry> globalTrackingGeometry; eventSetup.get<IdealMagneticFieldRecord>().get(field); eventSetup.get<GlobalTrackingGeometryRecord>().get(globalTrackingGeometry); eventSetup.get<TrackingComponentsRecord>().get( PropagatorSource_, thePropagator ); theField = &*field; theService->update(eventSetup); //Zero storage zero_storage(); //Do the Gmr Muons from the unModified Collection /* int iGmr = 0; if ( (muons->end() - muons->begin()) > 0) printf("Data Dump:: Original GMR Muons\n"); for ( MuonCollection::const_iterator muon = muons->begin(); muon!=muons->end(); muon++, iGmr++) { if ( iGmr >= ResidualRefitting::N_MAX_STORED) break; // error checking if (!debug dumpTrackRef(muon->combinedMuon(), "cmb"); dumpTrackRef(muon->standAloneMuon(), "sam"); dumpTrackRef(muon->track(), "trk"); } storageGmrOld_.n_ = iGmr; storageSamNew_.n_ = iGmr; */ //Refitted muons if (debug_) printf("Data Dump:: Rebuilt GMR Muon Track With TeV refitter default\n"); int iGmrRemake = 0; for ( reco::TrackCollection::const_iterator muon = muonTracks->begin(); muon!=muonTracks->end(); muon++, iGmrRemake++) { if ( iGmrRemake >= ResidualRefitting::N_MAX_STORED) break; // error checking // from TrackInfoProducer/test/TrackInfoAnalyzerExample.cc reco::TrackRef trackref=reco::TrackRef(muonTracks,iGmrRemake); if (debug_) dumpTrackRef(trackref, "gmr"); muonInfo(storageGmrNew_,trackref,iGmrRemake); } storageGmrNew_.n_ = iGmrRemake; if (debug_) printf("muons Remake"); if (debug_) printf("-----------------------------------------\n"); CollectTrackHits(muonTracks, storageTrackExtrapRec_); if (true) { printf("muons No Station 1"); printf("-----------------------------------------\n"); } NewTrackMeasurements(muonTracks, muonsNoSt1, storageTrackExtrapRecNoSt1_); if (true) { printf("muons No Station 2"); printf("-----------------------------------------\n"); } NewTrackMeasurements(muonTracks, muonsNoSt2, storageTrackExtrapRecNoSt2_); if (true) { printf("muons No Station 3"); printf("-----------------------------------------\n"); } NewTrackMeasurements(muonTracks, muonsNoSt3, storageTrackExtrapRecNoSt3_); if (true) { printf("muons No Station 4"); printf("-----------------------------------------\n"); } NewTrackMeasurements(muonTracks, muonsNoSt4, storageTrackExtrapRecNoSt4_); // dumpMuonRecHits(storageRecMuon_); /****************************************************************************************************************************************/ /* * extrapolates track to a cylinder. * commented for cosmic runs with no tracker in reco muons!! * */ int iGmrCyl = 0; for (reco::MuonCollection::const_iterator muon = muons->begin(); muon != muons->end(); muon++, iGmrCyl++) { dumpTrackRef(muon->combinedMuon(), "cmb"); dumpTrackRef(muon->standAloneMuon(), "sam"); dumpTrackRef(muon->track(), "trk"); cylExtrapTrkSam(iGmrCyl, muon->standAloneMuon() , samExtrap120_ , 120.); cylExtrapTrkSam(iGmrCyl, muon->track() , trackExtrap120_ , 120.); } samExtrap120_.n_ = iGmrCyl; trackExtrap120_.n_ = iGmrCyl; if (iGmrRemake > 0 || iGmrCyl > 0) { outputTree_ -> Fill(); std::cout << "FILLING NTUPLE!" << std::endl; std::cout << "Entries Recorded: " << outputTree_ -> GetEntries() << " Branch :: " << outputBranch_ -> GetEntries() << std::endl<<std::endl; } else std::cout<<"no tracks -- no fill!\n"<<std::endl<<std::endl; // /*************************************************************************************************************/ // //END OF ntuple dumper // //END OF ntuple dumper // /***********************************************************************************************************/ }
void ResidualRefitting::beginJob | ( | void | ) | [virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 1045 of file ResidualRefitting.cc.
References branchMuon(), branchTrackExtrap(), gather_cfg::cout, eventInfo_, outputBranch_, outputFile_, outputFileName_, outputTree_, samExtrap120_, storageGmrNew_, storageGmrNoPXBLayer1, storageGmrNoPXBLayer2, storageGmrNoPXBLayer3, storageGmrNoPXF, storageGmrNoSt1_, storageGmrNoSt2_, storageGmrNoSt3_, storageGmrNoSt4_, storageGmrNoTEC, storageGmrNoTIBLayer1, storageGmrNoTIBLayer2, storageGmrNoTIBLayer3, storageGmrNoTIBLayer4, storageGmrNoTID, storageGmrNoTOBLayer1, storageGmrNoTOBLayer2, storageGmrNoTOBLayer3, storageGmrNoTOBLayer4, storageGmrNoTOBLayer5, storageGmrNoTOBLayer6, storageGmrOld_, storageRecMuon_, storageSamNew_, storageSamNoSt1_, storageSamNoSt2_, storageSamNoSt3_, storageSamNoSt4_, storageTrackExtrapRec_, storageTrackExtrapRecNoSt1_, storageTrackExtrapRecNoSt2_, storageTrackExtrapRecNoSt3_, storageTrackExtrapRecNoSt4_, storageTrackExtrapTracker_, storageTrackHit_, storageTrackNoPXBLayer1, storageTrackNoPXBLayer2, storageTrackNoPXBLayer3, storageTrackNoPXF, storageTrackNoTEC, storageTrackNoTIBLayer1, storageTrackNoTIBLayer2, storageTrackNoTIBLayer3, storageTrackNoTIBLayer4, storageTrackNoTID, storageTrackNoTOBLayer1, storageTrackNoTOBLayer2, storageTrackNoTOBLayer3, storageTrackNoTOBLayer4, storageTrackNoTOBLayer5, storageTrackNoTOBLayer6, storageTrkNew_, storageTrkNoPXBLayer1, storageTrkNoPXBLayer2, storageTrkNoPXBLayer3, storageTrkNoPXF, storageTrkNoTEC, storageTrkNoTIBLayer1, storageTrkNoTIBLayer2, storageTrkNoTIBLayer3, storageTrkNoTIBLayer4, storageTrkNoTID, storageTrkNoTOBLayer1, storageTrkNoTOBLayer2, storageTrkNoTOBLayer3, storageTrkNoTOBLayer4, storageTrkNoTOBLayer5, storageTrkNoTOBLayer6, and trackExtrap120_.
{ std::cout<<"Creating file "<< outputFileName_.c_str()<<std::endl; outputFile_ = new TFile( outputFileName_.c_str(), "RECREATE" ) ; outputTree_ = new TTree("outputTree","outputTree"); outputTree_->Branch("eventInfo",&eventInfo_, "evtNum_/I:" "runNum_/I" ); ResidualRefitting::branchMuon(storageGmrOld_ , "gmrOld"); ResidualRefitting::branchMuon(storageGmrNew_ , "gmrNew"); ResidualRefitting::branchMuon(storageGmrNoSt1_ , "gmrNoSt1"); ResidualRefitting::branchMuon(storageGmrNoSt2_ , "gmrNoSt2"); ResidualRefitting::branchMuon(storageGmrNoSt3_ , "gmrNoSt3"); ResidualRefitting::branchMuon(storageGmrNoSt4_ , "gmrNoSt4"); ResidualRefitting::branchMuon(storageSamNew_ , "samNew"); ResidualRefitting::branchMuon(storageSamNoSt1_ , "samNoSt1"); ResidualRefitting::branchMuon(storageSamNoSt2_ , "samNoSt2"); ResidualRefitting::branchMuon(storageSamNoSt3_ , "samNoSt3"); ResidualRefitting::branchMuon(storageSamNoSt4_ , "samNoSt4"); ResidualRefitting::branchMuon(storageTrkNew_ , "trkNew"); ResidualRefitting::branchMuon(storageGmrNoPXBLayer1 , "gmrNoPXBLayer1"); ResidualRefitting::branchMuon(storageGmrNoPXBLayer2 , "gmrNoPXBLayer2"); ResidualRefitting::branchMuon(storageGmrNoPXBLayer3 , "gmrNoPXBLayer3"); ResidualRefitting::branchMuon(storageGmrNoPXF , "gmrNoPXF"); ResidualRefitting::branchMuon(storageGmrNoTIBLayer1 , "gmrNoTIBLayer1"); ResidualRefitting::branchMuon(storageGmrNoTIBLayer2 , "gmrNoTIBLayer2"); ResidualRefitting::branchMuon(storageGmrNoTIBLayer3 , "gmrNoTIBLayer3"); ResidualRefitting::branchMuon(storageGmrNoTIBLayer4 , "gmrNoTIBLayer4"); ResidualRefitting::branchMuon(storageGmrNoTID , "gmrNoTID"); ResidualRefitting::branchMuon(storageGmrNoTOBLayer1 , "gmrNoTOBLayer1"); ResidualRefitting::branchMuon(storageGmrNoTOBLayer2 , "gmrNoTOBLayer2"); ResidualRefitting::branchMuon(storageGmrNoTOBLayer3 , "gmrNoTOBLayer3"); ResidualRefitting::branchMuon(storageGmrNoTOBLayer4 , "gmrNoTOBLayer4"); ResidualRefitting::branchMuon(storageGmrNoTOBLayer5 , "gmrNoTOBLayer5"); ResidualRefitting::branchMuon(storageGmrNoTOBLayer6 , "gmrNoTOBLayer6"); ResidualRefitting::branchMuon(storageGmrNoTEC , "gmrNoTEC"); ResidualRefitting::branchMuon(storageTrkNoPXBLayer1 , "trkNoPXBLayer1"); ResidualRefitting::branchMuon(storageTrkNoPXBLayer2 , "trkNoPXBLayer2"); ResidualRefitting::branchMuon(storageTrkNoPXBLayer3 , "trkNoPXBLayer3"); ResidualRefitting::branchMuon(storageTrkNoPXF , "trkNoPXF"); ResidualRefitting::branchMuon(storageTrkNoTIBLayer1 , "trkNoTIBLayer1"); ResidualRefitting::branchMuon(storageTrkNoTIBLayer2 , "trkNoTIBLayer2"); ResidualRefitting::branchMuon(storageTrkNoTIBLayer3 , "trkNoTIBLayer3"); ResidualRefitting::branchMuon(storageTrkNoTIBLayer4 , "trkNoTIBLayer4"); ResidualRefitting::branchMuon(storageTrkNoTID , "trkNoTID"); ResidualRefitting::branchMuon(storageTrkNoTOBLayer1 , "trkNoTOBLayer1"); ResidualRefitting::branchMuon(storageTrkNoTOBLayer2 , "trkNoTOBLayer2"); ResidualRefitting::branchMuon(storageTrkNoTOBLayer3 , "trkNoTOBLayer3"); ResidualRefitting::branchMuon(storageTrkNoTOBLayer4 , "trkNoTOBLayer4"); ResidualRefitting::branchMuon(storageTrkNoTOBLayer5 , "trkNoTOBLayer5"); ResidualRefitting::branchMuon(storageTrkNoTOBLayer6 , "trkNoTOBLayer6"); ResidualRefitting::branchMuon(storageTrkNoTEC , "trkNoTEC"); outputBranch_ = outputTree_ -> Branch("recHitsNew", &storageRecMuon_, "n_/I:" "muonLink_[1000]/I:" "system_[1000]/I:" "endcap_[1000]/I:" "station_[1000]/I:" "ring_[1000]/I:" "chamber_[1000]/I:" "layer_[1000]/I:" "superLayer_[1000]/I:" "wheel_[1000]/I:" "sector_[1000]/I:" "gpX_[1000]/F:" "gpY_[1000]/F:" "gpZ_[1000]/F:" "gpEta_[1000]/F:" "gpPhi_[1000]/F:" "lpX_[1000]/F:" "lpY_[1000]/F:" "lpZ_[1000]/F" ); outputBranch_ = outputTree_ -> Branch("recHitsTracker", &storageTrackHit_, "n_/I:" "muonLink_[1000]/I:" "detector_[1000]/I:" "subdetector_[1000]/I:" "blade_[1000]/I:" "disk_[1000]/I:" "ladder_[1000]/I:" "layer_[1000]/I:" "module_[1000]/I:" "panel_[1000]/I:" "ring_[1000]/I:" "side_[1000]/I:" "wheel_[1000]/I:" "gpX_[1000]/F:" "gpY_[1000]/F:" "gpZ_[1000]/F:" "gpEta_[1000]/F:" "gpPhi_[1000]/F:" "lpX_[1000]/F:" "lpY_[1000]/F:" "lpZ_[1000]/F" ); ResidualRefitting::branchTrackExtrap(storageTrackExtrapRec_ , "trkExtrap"); ResidualRefitting::branchTrackExtrap(storageTrackExtrapRecNoSt1_ , "trkExtrapNoSt1"); ResidualRefitting::branchTrackExtrap(storageTrackExtrapRecNoSt2_ , "trkExtrapNoSt2"); ResidualRefitting::branchTrackExtrap(storageTrackExtrapRecNoSt3_ , "trkExtrapNoSt3"); ResidualRefitting::branchTrackExtrap(storageTrackExtrapRecNoSt4_ , "trkExtrapNoSt4"); ResidualRefitting::branchTrackExtrap(storageTrackExtrapTracker_, "trkExtrapTracker"); ResidualRefitting::branchTrackExtrap(storageTrackNoPXF , "trkExtrapNoPXF"); ResidualRefitting::branchTrackExtrap(storageTrackNoPXBLayer1 , "trkExtrapNoPXBLayer1"); ResidualRefitting::branchTrackExtrap(storageTrackNoPXBLayer2 , "trkExtrapNoPXBLayer2"); ResidualRefitting::branchTrackExtrap(storageTrackNoPXBLayer3 , "trkExtrapNoPXBLayer3"); ResidualRefitting::branchTrackExtrap(storageTrackNoTIBLayer1 , "trkExtrapNoTIBLayer1"); ResidualRefitting::branchTrackExtrap(storageTrackNoTIBLayer2 , "trkExtrapNoTIBLayer2"); ResidualRefitting::branchTrackExtrap(storageTrackNoTIBLayer3 , "trkExtrapNoTIBLayer3"); ResidualRefitting::branchTrackExtrap(storageTrackNoTIBLayer4 , "trkExtrapNoTIBLayer4"); ResidualRefitting::branchTrackExtrap(storageTrackNoTID , "trkExtrapNoTID"); ResidualRefitting::branchTrackExtrap(storageTrackNoTOBLayer1 , "trkExtrapNoTOBLayer1"); ResidualRefitting::branchTrackExtrap(storageTrackNoTOBLayer2 , "trkExtrapNoTOBLayer2"); ResidualRefitting::branchTrackExtrap(storageTrackNoTOBLayer3 , "trkExtrapNoTOBLayer3"); ResidualRefitting::branchTrackExtrap(storageTrackNoTOBLayer4 , "trkExtrapNoTOBLayer4"); ResidualRefitting::branchTrackExtrap(storageTrackNoTOBLayer5 , "trkExtrapNoTOBLayer5"); ResidualRefitting::branchTrackExtrap(storageTrackNoTOBLayer6 , "trkExtrapNoTOBLayer6"); ResidualRefitting::branchTrackExtrap(storageTrackNoTEC , "trkExtrapNoTEC"); ResidualRefitting::branchTrackExtrap(trackExtrap120_ , "trackCyl120"); ResidualRefitting::branchTrackExtrap(samExtrap120_ , "samCyl120"); }
void ResidualRefitting::branchMuon | ( | ResidualRefitting::storage_muon & | storageTmp, |
std::string | branchName | ||
) |
Definition at line 1193 of file ResidualRefitting.cc.
References outputBranch_, and outputTree_.
Referenced by beginJob().
{ outputBranch_ = outputTree_ -> Branch(branchName.c_str(), &storageTmp, "n_/I:" "charge_[10]/I:" "pt_[10]/F:" "eta_[10]/F:" "p_[10]/F:" "phi_[10]/F:" "numRecHits_[10]/I:" "chiSq_[10]/F:" "ndf_[10]/F:" "chiSqOvrNdf_[10]/F" ); }
void ResidualRefitting::branchTrackExtrap | ( | ResidualRefitting::storage_trackExtrap & | storageTmp, |
std::string | branchName | ||
) |
Definition at line 1213 of file ResidualRefitting.cc.
References outputBranch_, and outputTree_.
Referenced by beginJob().
{ outputBranch_ = outputTree_ -> Branch(branchName.c_str(), &storageTmp, "n_/I:" "muonLink_[1000]/I:" "recLink_[1000]/I:" "gpX_[1000]/F:" "gpY_[1000]/F:" "gpZ_[1000]/F:" "gpEta_[1000]/F:" "gpPhi_[1000]/F:" "lpX_[1000]/F:" "lpY_[1000]/F:" "lpZ_[1000]/F:" "resX_[1000]/F:" "resY_[1000]/F:" "resZ_[1000]/F" ); }
void ResidualRefitting::CollectTrackHits | ( | edm::Handle< reco::TrackCollection > | trackColl, |
ResidualRefitting::storage_trackExtrap & | trackExtrap | ||
) |
Definition at line 273 of file ResidualRefitting.cc.
References ResidualRefitting::storage_hit::chamber_, MuonSubdetId::CSC, debug_, DetId::det(), cond::rpcobgas::detid, MuonSubdetId::DT, dumpTrackRef(), Reference_intrackfit_cff::endcap, ResidualRefitting::storage_hit::endcap_, freeTrajStateMuon(), ResidualRefitting::storage_hit::gpEta_, ResidualRefitting::storage_trackHit::gpEta_, ResidualRefitting::storage_trackHit::gpPhi_, ResidualRefitting::storage_hit::gpPhi_, ResidualRefitting::storage_hit::gpX_, ResidualRefitting::storage_trackHit::gpX_, ResidualRefitting::storage_hit::gpY_, ResidualRefitting::storage_trackHit::gpY_, ResidualRefitting::storage_hit::gpZ_, ResidualRefitting::storage_trackHit::gpZ_, ExpressReco_HICollisions_FallBack::id, ResidualRefitting::storage_hit::layer_, ResidualRefitting::storage_trackHit::lpX_, ResidualRefitting::storage_hit::lpX_, ResidualRefitting::storage_hit::lpY_, ResidualRefitting::storage_trackHit::lpY_, ResidualRefitting::storage_trackHit::lpZ_, ResidualRefitting::storage_hit::lpZ_, metsig::muon, DetId::Muon, ResidualRefitting::storage_hit::muonLink_, ResidualRefitting::storage_hit::n_, ResidualRefitting::storage_trackExtrap::n_, ResidualRefitting::storage_trackHit::n_, DetId::rawId(), relativeConstraints::ring, ResidualRefitting::storage_hit::ring_, MuonSubdetId::RPC, ResidualRefitting::storage_hit::sector_, MuonTransientTrackingRecHit::specificBuild(), relativeConstraints::station, ResidualRefitting::storage_hit::station_, storageRecMuon_, storageTrackHit_, StoreTrackerRecHits(), DetId::subdetId(), ResidualRefitting::storage_hit::superLayer_, ResidualRefitting::storage_hit::system_, theService, align::Tracker, MuonServiceProxy::trackingGeometry(), trkExtrap(), ResidualRefitting::storage_hit::wheel_, PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().
Referenced by analyze().
{ int iMuonHit = 0; int iTrackHit= 0; int numTracks= 0; for ( reco::TrackCollection::const_iterator muon = trackColl->begin(); muon!=trackColl->end(); muon++) { int iTrack = muon - trackColl->begin(); reco::TrackRef trackref=reco::TrackRef(trackColl,iTrack); FreeTrajectoryState recoStart = ResidualRefitting::freeTrajStateMuon(trackref); if (debug_) dumpTrackRef(trackref, "CollectTrackHits Track"); for (trackingRecHit_iterator rec = muon->recHitsBegin(); rec != muon->recHitsEnd(); rec++) { int iRec = rec - muon->recHitsBegin(); DetId detid = (*rec)->geographicalId(); if (detid.det() != DetId::Muon && detid.det() != DetId::Tracker) { if (debug_) printf("Rec Hit not from muon system or tracker... continuing...\n"); continue; } // numTracks++; // Get Local and Global Position of Hits LocalPoint lp = (*rec)->localPosition(); float lpX = lp.x(); float lpY = lp.y(); float lpZ = lp.z(); MuonTransientTrackingRecHit::MuonRecHitPointer mrhp = MuonTransientTrackingRecHit::specificBuild(theService->trackingGeometry()->idToDet((**rec).geographicalId()) ,&(**rec)); GlobalPoint gp = mrhp->globalPosition(); float gpRecX = gp.x(); float gpRecY = gp.y(); float gpRecZ = gp.z(); float gpRecEta = gp.eta(); float gpRecPhi = gp.phi(); if (detid.det() == DetId::Muon) { int systemMuon = detid.subdetId(); // 1 DT; 2 CSC; 3 RPC int endcap = -999; int station = -999; int ring = -999; int chamber = -999; int layer = -999; int superLayer = -999; int wheel = -999; int sector = -999; if ( systemMuon == MuonSubdetId::CSC) { CSCDetId id(detid.rawId()); endcap = id.endcap(); station = id.station(); ring = id.ring(); chamber = id.chamber(); layer = id.layer(); if (debug_)printf("CSC\t[endcap][station][ringN][chamber][layer]:[%d][%d][%d][%d][%d]\t", endcap, station, ring, chamber, layer); } else if ( systemMuon == MuonSubdetId::DT ) { DTWireId id(detid.rawId()); station = id.station(); layer = id.layer(); superLayer = id.superLayer(); wheel = id.wheel(); sector = id.sector(); if (debug_) printf("DT \t[station][layer][superlayer]:[%d][%d][%d]\n", station,layer,superLayer); } else if ( systemMuon == MuonSubdetId::RPC) { RPCDetId id(detid.rawId()); station = id.station(); if (debug_) printf("RPC\t[station]:[%d]\n", station); } storageRecMuon_.muonLink_ [iMuonHit] = iTrack; storageRecMuon_.system_ [iMuonHit] = systemMuon; storageRecMuon_.endcap_ [iMuonHit] = endcap; storageRecMuon_.station_ [iMuonHit] = station; storageRecMuon_.ring_ [iMuonHit] = ring; storageRecMuon_.chamber_ [iMuonHit] = chamber; storageRecMuon_.layer_ [iMuonHit] = layer; storageRecMuon_.superLayer_ [iMuonHit] = superLayer; storageRecMuon_.wheel_ [iMuonHit] = wheel; storageRecMuon_.sector_ [iMuonHit] = sector; storageRecMuon_.gpX_ [iMuonHit] = gpRecX; storageRecMuon_.gpY_ [iMuonHit] = gpRecY; storageRecMuon_.gpZ_ [iMuonHit] = gpRecZ; storageRecMuon_.gpEta_ [iMuonHit] = gpRecEta; storageRecMuon_.gpPhi_ [iMuonHit] = gpRecPhi; storageRecMuon_.lpX_ [iMuonHit] = lpX; storageRecMuon_.lpY_ [iMuonHit] = lpY; storageRecMuon_.lpZ_ [iMuonHit] = lpZ; iMuonHit++; } else if (detid.det() == DetId::Tracker) { if (debug_) printf("Tracker\n"); StoreTrackerRecHits(detid, iTrack, iTrackHit); storageTrackHit_.gpX_ [iTrackHit] = gpRecX; storageTrackHit_.gpY_ [iTrackHit] = gpRecY; storageTrackHit_.gpZ_ [iTrackHit] = gpRecZ; storageTrackHit_.gpEta_ [iTrackHit] = gpRecEta; storageTrackHit_.gpPhi_ [iTrackHit] = gpRecPhi; storageTrackHit_.lpX_ [iTrackHit] = lpX; storageTrackHit_.lpY_ [iTrackHit] = lpY; storageTrackHit_.lpZ_ [iTrackHit] = lpZ; iTrackHit++; } else printf("THIS CAN NOT HAPPEN\n"); trkExtrap(detid, numTracks, iTrack, iRec, recoStart, lp, trackExtrap); numTracks++; if (debug_) printf("\tLocal Positon: \tx = %2.2f\ty = %2.2f\tz = %2.2f\n",lpX, lpY, lpZ); if (debug_) printf("\tGlobal Position: \tx = %6.2f\ty = %6.2f\tz = %6.2f\teta = %4.2f\tphi = %3.2f\n", gpRecX,gpRecY,gpRecZ,gpRecEta,gpRecPhi); } } storageRecMuon_ .n_ = iMuonHit; storageTrackHit_.n_ = iTrackHit; trackExtrap .n_ = numTracks; }
void ResidualRefitting::cylExtrapTrkSam | ( | int | recNum, |
reco::TrackRef | track, | ||
ResidualRefitting::storage_trackExtrap & | storage, | ||
double | rho | ||
) |
Definition at line 854 of file ResidualRefitting.cc.
References newFWLiteAna::build, debug_, PV3DBase< T, PVType, FrameType >::eta(), freeTrajStateMuon(), TrajectoryStateOnSurface::globalPosition(), ResidualRefitting::storage_trackExtrap::gpEta_, ResidualRefitting::storage_trackExtrap::gpPhi_, ResidualRefitting::storage_trackExtrap::gpX_, ResidualRefitting::storage_trackExtrap::gpY_, ResidualRefitting::storage_trackExtrap::gpZ_, TrajectoryStateOnSurface::isValid(), ResidualRefitting::storage_trackExtrap::muonLink_, PV3DBase< T, PVType, FrameType >::phi(), pos, mathSSE::sqrt(), thePropagator, PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().
Referenced by analyze().
{ Cylinder::PositionType pos(0,0,0); Cylinder::RotationType rot; Cylinder::CylinderPointer myCylinder = Cylinder::build(pos, rot, rho); // SteppingHelixPropagator inwardProp ( theField, oppositeToMomentum ); // SteppingHelixPropagator outwardProp ( theField, alongMomentum ); FreeTrajectoryState recoStart = freeTrajStateMuon(track); // TrajectoryStateOnSurface recoProp = outwardProp.propagate(recoStart, *myCylinder); TrajectoryStateOnSurface recoProp = thePropagator->propagate(recoStart, *myCylinder); double xVal = -9999; double yVal = -9999; double zVal = -9999; double phiVal = -9999; double etaVal = -9999; if(recoProp.isValid()) { GlobalPoint recoPoint = recoProp.globalPosition(); xVal = recoPoint.x(); yVal = recoPoint.y(); zVal = recoPoint.z(); phiVal = recoPoint.phi(); etaVal = recoPoint.eta(); } storage.muonLink_[recNum] = recNum; storage.gpX_ [recNum] = xVal; storage.gpY_ [recNum] = yVal; storage.gpZ_ [recNum] = zVal; storage.gpEta_ [recNum] = etaVal; storage.gpPhi_ [recNum] = phiVal; float rhoVal = sqrt( xVal*xVal + yVal*yVal); printf("Cylinder: rho = %4.2f\tphi = %4.2f\teta = %4.2f\n", rhoVal, phiVal, etaVal); if (debug_) printf("Cylinder: rho = %4.2f\tphi = %4.2f\teta = %4.2f\n", rhoVal, phiVal, etaVal); }
void ResidualRefitting::dumpMuonRecHits | ( | ResidualRefitting::storage_hit | hit | ) |
Definition at line 1297 of file ResidualRefitting.cc.
References gather_cfg::cout, i, ResidualRefitting::storage_hit::lpX_, ResidualRefitting::storage_hit::lpY_, ResidualRefitting::storage_hit::lpZ_, ResidualRefitting::storage_hit::n_, ResidualRefitting::storage_hit::superLayer_, and ResidualRefitting::storage_hit::system_.
{ std::cout<<"Muon Rec Hits Dump:\n"; for (unsigned int i = 0; i < (unsigned int)hit.n_; i++) { // double rho = sqrt( (float)hit.gpX_[i] * (float)hit.gpX_[i] + (float)hit.gpY_[i] * (float)hit.gpY_[i] ); printf ("%d\tsubdetector = %d\t superLayer =%d" , i, (int)hit.system_[i], (int)hit.superLayer_[i] ); // printf ("\tGlobal\tx = %0.3f" , (float)hit.gpX_[i] ); // printf ("\ty = %0.3f" , (float)hit.gpY_[i] ); // printf ("\tz = %0.3f" , (float)hit.gpZ_[i] ); // printf ("\trho =%0.3f" , rho ); // printf ("\teta = %0.3f" , (float)hit.gpEta_[i] ); // printf ("\tphi = %0.3f\n" , (float)hit.gpPhi_[i] ); printf ("\t\tLocal\tx = %0.3f" , (float)hit.lpX_[i] ); printf ("\ty = %0.3f" , (float)hit.lpY_[i] ); printf ("\tz = %0.3f\n" , (float)hit.lpZ_[i] ); } }
void ResidualRefitting::dumpTrackExtrap | ( | ResidualRefitting::storage_trackExtrap | track | ) |
Definition at line 1273 of file ResidualRefitting.cc.
References gather_cfg::cout, i, ResidualRefitting::storage_trackExtrap::lpX_, ResidualRefitting::storage_trackExtrap::lpY_, ResidualRefitting::storage_trackExtrap::lpZ_, ResidualRefitting::storage_trackExtrap::muonLink_, ResidualRefitting::storage_trackExtrap::n_, and ResidualRefitting::storage_trackExtrap::recLink_.
{ std::cout<<"\n\nExtrapolation Dump:\n"; for (unsigned int i = 0; i < (unsigned int)track.n_; i++) { // double rho = sqrt( (float)track.gpX_[i] * (float)track.gpX_[i] + (float)track.gpY_[i] * (float)track.gpY_[i] ); printf ("%d\tmuonLink= %d",i, (int)track.muonLink_[i]); printf ("\trecLink = %d", (int)track.recLink_[i] ); // printf ("\tGlobal\tx = %0.3f" , (float)track.gpX_[i] ); // printf ("\ty = %0.3f" , (float)track.gpY_[i] ); // printf ("\tz = %0.3f" , (float)track.gpZ_[i] ); // printf ("\trho =%0.3f" , rho ); // printf ("\teta = %0.3f" , (float)track.gpEta_[i] ); // printf ("\tphi = %0.3f" , (float)track.gpPhi_[i] ); printf ("\t\tLocal\tx = %0.3f" , (float)track.lpX_[i] ); printf ("\ty = %0.3f" , (float)track.lpY_[i] ); printf ("\tz = %0.3f\n" , (float)track.lpZ_[i] ); } }
void ResidualRefitting::dumpTrackHits | ( | ResidualRefitting::storage_trackHit | hit | ) |
Definition at line 1320 of file ResidualRefitting.cc.
References gather_cfg::cout, i, ResidualRefitting::storage_trackHit::layer_, ResidualRefitting::storage_trackHit::lpX_, ResidualRefitting::storage_trackHit::lpY_, ResidualRefitting::storage_trackHit::lpZ_, ResidualRefitting::storage_trackHit::n_, and ResidualRefitting::storage_trackHit::subdetector_.
{ std::cout<<"Tracker Rec Hits Dump:\n"; for (unsigned int i = 0; i < (unsigned int)hit.n_; i++) { // double rho = sqrt( (float)hit.gpX_[i] * (float)hit.gpX_[i] + (float)hit.gpY_[i] * (float)hit.gpY_[i] ); printf ("%d\tsubdetector = %d" , i, (int)hit.subdetector_[i] ); printf ("\tlayer = %d" , (int)hit.layer_[i] ); // printf ("\tGlobal\tx = %0.3f" , (float)hit.gpX_[i] ); // printf ("\ty = %0.3f" , (float)hit.gpY_[i] ); // printf ("\tz = %0.3f" , (float)hit.gpZ_[i] ); // printf ("\trho =%0.3f" , rho ); // printf ("\teta = %0.3f" , (float)hit.gpEta_[i] ); // printf ("\tphi = %0.3f\n" , (float)hit.gpPhi_[i] ); printf ("\t\tLocal\tx = %0.3f" , (float)hit.lpX_[i] ); printf ("\ty = %0.3f" , (float)hit.lpY_[i] ); printf ("\tz = %0.3f\n" , (float)hit.lpZ_[i] ); } }
void ResidualRefitting::dumpTrackRef | ( | reco::TrackRef | muon, |
std::string | str | ||
) |
Definition at line 1344 of file ResidualRefitting.cc.
References eta(), L1TEmulatorMonitor_cff::p, phi, and ExpressReco_HICollisions_FallBack::pt.
Referenced by analyze(), and CollectTrackHits().
void ResidualRefitting::endJob | ( | void | ) | [virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 1237 of file ResidualRefitting.cc.
References outputFile_.
{ outputFile_ -> Write(); outputFile_ -> Close() ; }
FreeTrajectoryState ResidualRefitting::freeTrajStateMuon | ( | reco::TrackRef | muon | ) |
Definition at line 1248 of file ResidualRefitting.cc.
References DeDxDiscriminatorTools::charge(), gather_cfg::cout, debug_, and theField.
Referenced by CollectTrackHits(), cylExtrapTrkSam(), and NewTrackMeasurements().
{ math::XYZPoint innerPos = muon -> referencePoint(); math::XYZVector innerMom = muon -> momentum(); if (debug_) std::cout << "Inner Pos: " << "\tx = " << innerPos.X() << "\ty = " << innerPos.Y() << "\tz = " << innerPos.Z() << std::endl; GlobalPoint innerPoint( innerPos.X(), innerPos.Y(), innerPos.Z()); GlobalVector innerVec ( innerMom.X(), innerMom.Y(), innerMom.Z()); FreeTrajectoryState recoStart( innerPoint, innerVec, muon ->charge(), theField ); return recoStart; }
bool ResidualRefitting::IsSameHit | ( | trackingRecHit_iterator | hit1, |
trackingRecHit_iterator | hit2 | ||
) |
Definition at line 537 of file ResidualRefitting.cc.
References ExpressReco_HICollisions_FallBack::e.
Referenced by MatchTrackWithRecHits(), and NewTrackMeasurements().
{ double lpx1 = (*hit1)->localPosition().x(); double lpy1 = (*hit1)->localPosition().y(); double lpz1 = (*hit1)->localPosition().z(); double lpx2 = (*hit2)->localPosition().x(); double lpy2 = (*hit2)->localPosition().y(); double lpz2 = (*hit2)->localPosition().z(); if ( fabs( lpx1 - lpx2) > 1e-3) return false; // printf("Match lpx...\n"); if ( fabs( lpy1 - lpy2) > 1e-3) return false; // printf("Match lpy...\n"); if ( fabs( lpz1 - lpz2) > 1e-3) return false; // printf("Match lpz...\n"); return true; }
int ResidualRefitting::MatchTrackWithRecHits | ( | reco::TrackCollection::const_iterator | trackIt, |
edm::Handle< reco::TrackCollection > | ref | ||
) |
Definition at line 469 of file ResidualRefitting.cc.
References debug_, cmsRelvalreport::exit, and IsSameHit().
Referenced by NewTrackMeasurements().
{ if (debug_) printf("Matching a re-fitted track to the original track.\n"); int TrackMatch = -1; for (trackingRecHit_iterator rec = trackIt->recHitsBegin(); rec!=trackIt->recHitsEnd(); rec++) { bool foundMatch = false; for (reco::TrackCollection::const_iterator refIt = ref->begin(); refIt!=ref->end(); refIt++) { int iTrackMatch = refIt - ref->begin(); if (foundMatch && TrackMatch !=iTrackMatch) break; for (trackingRecHit_iterator recRef = refIt->recHitsBegin(); recRef!=refIt->recHitsEnd(); recRef++) { if (!IsSameHit(rec,recRef)) continue; foundMatch = true; TrackMatch = iTrackMatch; // printf("Rec hit match for original track %d\n", iTrackMatch); } } if (!foundMatch) { printf("SOMETHING WENT WRONG! Could not match Track with original track!"); exit(1); } } if (debug_) printf("Rec hit match for original track %d\n", TrackMatch); // reco::TrackRef trackref=reco::TrackRef(ref,TrackMatch); return TrackMatch; }
void ResidualRefitting::muonInfo | ( | ResidualRefitting::storage_muon & | storeMuon, |
reco::TrackRef | muon, | ||
int | val | ||
) |
Definition at line 671 of file ResidualRefitting.cc.
References ResidualRefitting::storage_muon::charge_, ResidualRefitting::storage_muon::chiSq_, ResidualRefitting::storage_muon::chiSqOvrNdf_, ResidualRefitting::storage_muon::eta_, ResidualRefitting::storage_muon::ndf_, ResidualRefitting::storage_muon::numRecHits_, ResidualRefitting::storage_muon::p_, ResidualRefitting::storage_muon::phi_, and ResidualRefitting::storage_muon::pt_.
Referenced by analyze().
{ storeMuon.pt_ [val] = muon->pt(); storeMuon.p_ [val] = muon->p(); storeMuon.eta_[val] = muon->eta(); storeMuon.phi_[val] = muon->phi(); storeMuon.charge_[val] = muon->charge(); storeMuon.numRecHits_[val] = muon->numberOfValidHits(); storeMuon.chiSq_[val] = muon->chi2(); storeMuon.ndf_[val] = muon->ndof(); storeMuon.chiSqOvrNdf_[val] = muon->normalizedChi2(); }
void ResidualRefitting::NewTrackMeasurements | ( | edm::Handle< reco::TrackCollection > | trackCollOrig, |
edm::Handle< reco::TrackCollection > | trackColl, | ||
ResidualRefitting::storage_trackExtrap & | trackExtrap | ||
) |
Definition at line 419 of file ResidualRefitting.cc.
References cond::rpcobgas::detid, freeTrajStateMuon(), IsSameHit(), MatchTrackWithRecHits(), metsig::muon, ResidualRefitting::storage_trackExtrap::n_, MuonTransientTrackingRecHit::specificBuild(), theService, MuonServiceProxy::trackingGeometry(), and trkExtrap().
Referenced by analyze().
{ int numTracks = 0; int recCounter = 0; for ( reco::TrackCollection::const_iterator muon = trackColl->begin(); muon!=trackColl->end(); muon++) { int iTrack = muon - trackColl->begin(); reco::TrackRef trackref=reco::TrackRef(trackColl,iTrack); FreeTrajectoryState recoStart = ResidualRefitting::freeTrajStateMuon(trackref); int iTrackLink = MatchTrackWithRecHits(muon,trackCollOrig); reco::TrackRef ref = reco::TrackRef(trackCollOrig, iTrackLink); for (trackingRecHit_iterator rec1 = ref->recHitsBegin(); rec1!= ref->recHitsEnd(); rec1++, recCounter++) { //int iRec = rec1 - ref->recHitsBegin(); bool unbiasedRec = true; for ( trackingRecHit_iterator rec2 = muon->recHitsBegin(); rec2!=muon->recHitsEnd();rec2++) { if (IsSameHit(rec1,rec2)) { unbiasedRec = false; break; } } if (!unbiasedRec) continue; DetId detid = (*rec1)->geographicalId(); MuonTransientTrackingRecHit::MuonRecHitPointer mrhp = MuonTransientTrackingRecHit::specificBuild(theService->trackingGeometry()->idToDet((**rec1).geographicalId()) ,&(**rec1)); trkExtrap(detid, numTracks, iTrackLink, recCounter, recoStart, (*rec1)->localPosition(), trackExtrap); numTracks++; } } trackExtrap.n_ = numTracks; }
void ResidualRefitting::omitStation | ( | edm::Handle< reco::MuonCollection > | funcMuons, |
edm::Handle< reco::TrackCollection > | , | ||
ResidualRefitting::storage_muon & | storeGmr, | ||
ResidualRefitting::storage_muon & | storeSam, | ||
ResidualRefitting::storage_trackExtrap & | storeExtrap, | ||
int | omitStation | ||
) |
void ResidualRefitting::omitTrackerSystem | ( | edm::Handle< reco::MuonCollection > | trkMuons, |
ResidualRefitting::storage_muon & | storeGmr, | ||
ResidualRefitting::storage_muon & | storeTrk, | ||
ResidualRefitting::storage_trackExtrap & | storeExtrap, | ||
int | omitSystem | ||
) |
int ResidualRefitting::ReturnSector | ( | DetId | detid | ) |
Definition at line 809 of file ResidualRefitting.cc.
References MuonSubdetId::CSC, DetId::det(), MuonSubdetId::DT, Reference_intrackfit_cff::endcap, ExpressReco_HICollisions_FallBack::id, DetId::Muon, DetId::rawId(), relativeConstraints::ring, MuonSubdetId::RPC, relativeConstraints::station, and DetId::subdetId().
Referenced by trkExtrap().
{ int endcap = -999; int station = -999; int ring = -999; int chamber = -999; int layer = -999; int superLayer = -999; int wheel = -999; int sector = -999; if (detid.det() == DetId::Muon) { int systemMuon = detid.subdetId(); // 1 DT; 2 CSC; 3 RPC if ( systemMuon == MuonSubdetId::CSC) { CSCDetId id(detid.rawId()); endcap = id.endcap(); station = id.station(); ring = id.ring(); chamber = id.chamber(); layer = id.layer(); } else if ( systemMuon == MuonSubdetId::DT ) { DTWireId id(detid.rawId()); station = id.station(); layer = id.layer(); superLayer = id.superLayer(); wheel = id.wheel(); sector = id.sector(); } else if ( systemMuon == MuonSubdetId::RPC) { RPCDetId id(detid.rawId()); station = id.station(); } } return sector; }
int ResidualRefitting::ReturnStation | ( | DetId | detid | ) |
Definition at line 765 of file ResidualRefitting.cc.
References MuonSubdetId::CSC, DetId::det(), MuonSubdetId::DT, Reference_intrackfit_cff::endcap, ExpressReco_HICollisions_FallBack::id, DetId::Muon, DetId::rawId(), relativeConstraints::ring, MuonSubdetId::RPC, relativeConstraints::station, and DetId::subdetId().
Referenced by trkExtrap().
{ int endcap = -999; int station = -999; int ring = -999; int chamber = -999; int layer = -999; int superLayer = -999; int wheel = -999; int sector = -999; if (detid.det() == DetId::Muon) { int systemMuon = detid.subdetId(); // 1 DT; 2 CSC; 3 RPC if ( systemMuon == MuonSubdetId::CSC) { CSCDetId id(detid.rawId()); endcap = id.endcap(); station = id.station(); ring = id.ring(); chamber = id.chamber(); layer = id.layer(); } else if ( systemMuon == MuonSubdetId::DT ) { DTWireId id(detid.rawId()); station = id.station(); layer = id.layer(); superLayer = id.superLayer(); wheel = id.wheel(); sector = id.sector(); } else if ( systemMuon == MuonSubdetId::RPC) { RPCDetId id(detid.rawId()); station = id.station(); } } return station; }
void ResidualRefitting::StoreTrackerRecHits | ( | DetId | detid, |
int | iTrack, | ||
int | iRec | ||
) |
Definition at line 561 of file ResidualRefitting.cc.
References ResidualRefitting::storage_trackHit::blade_, gather_cfg::cout, debug_, DetId::det(), ExpressReco_HICollisions_FallBack::detector, ResidualRefitting::storage_trackHit::detector_, ResidualRefitting::storage_trackHit::disk_, ExpressReco_HICollisions_FallBack::id, ResidualRefitting::storage_trackHit::ladder_, ResidualRefitting::storage_trackHit::layer_, module(), ResidualRefitting::storage_trackHit::module_, ResidualRefitting::storage_trackHit::muonLink_, ResidualRefitting::storage_trackHit::panel_, PXB, PXF, DetId::rawId(), relativeConstraints::ring, ResidualRefitting::storage_trackHit::ring_, ResidualRefitting::storage_trackHit::side_, storageTrackHit_, ResidualRefitting::storage_trackHit::subdetector_, DetId::subdetId(), TEC, TIB, TID, TOB, DetId::Tracker, and ResidualRefitting::storage_trackHit::wheel_.
Referenced by CollectTrackHits().
{ int detector = -1; int subdetector = -1; int blade = -1; int disk = -1; int ladder = -1; int layer = -1; int module = -1; int panel = -1; int ring = -1; int side = -1; int wheel = -1; //Detector Info detector = detid.det(); subdetector = detid.subdetId(); if (detector != DetId::Tracker) { std::cout<<"OMFG NOT THE TRACKER\n"<<std::endl; return; } if (debug_) std::cout<<"Tracker:: "; if (subdetector == ResidualRefitting::PXB) { PXBDetId id(detid.rawId()); layer = id.layer(); ladder = id.ladder(); module = id.module(); if (debug_) std::cout << "PXB" << "\tlayer = " << layer << "\tladder = " << ladder << "\tmodule = " << module; } else if (subdetector == ResidualRefitting::PXF) { PXFDetId id(detid.rawId()); side = id.side(); disk = id.disk(); blade = id.blade(); panel = id.panel(); module = id.module(); if (debug_) std::cout << "PXF" << "\tside = " << side << "\tdisk = " << disk << "\tblade = " << blade << "\tpanel = " << panel << "\tmodule = " << module; } else if (subdetector == ResidualRefitting::TIB) { TIBDetId id(detid.rawId()); layer = id.layer(); module = id.module(); if (debug_) std::cout << "TIB" << "\tlayer = " << layer << "\tmodule = "<< module; } else if (subdetector == ResidualRefitting::TID) { TIDDetId id(detid.rawId()); side = id.side(); wheel = id.wheel(); ring = id.ring(); if (debug_) std::cout <<"TID" << "\tside = " << side << "\twheel = " << wheel << "\tring = " << ring; } else if (subdetector == ResidualRefitting::TOB) { TOBDetId id(detid.rawId()); layer = id.layer(); module = id.module(); if (debug_) std::cout <<"TOB" <<"\tlayer = " << layer <<"\tmodule = " << module; } else if (subdetector == ResidualRefitting::TEC) { TECDetId id(detid.rawId()); ring = id.ring(); module = id.module(); if (debug_) std::cout <<"TEC" << "\tring = " << ring << "\tmodule = "<< module; } //Do Storage storageTrackHit_.muonLink_ [iRec] =iTrack ; storageTrackHit_.detector_ [iRec] =detector ; storageTrackHit_.subdetector_ [iRec] =subdetector ; storageTrackHit_.blade_ [iRec] =blade ; storageTrackHit_.disk_ [iRec] =disk ; storageTrackHit_.ladder_ [iRec] =ladder ; storageTrackHit_.layer_ [iRec] =layer ; storageTrackHit_.module_ [iRec] =module ; storageTrackHit_.panel_ [iRec] =panel ; storageTrackHit_.ring_ [iRec] =ring ; storageTrackHit_.side_ [iRec] =side ; storageTrackHit_.wheel_ [iRec] =wheel ; }
void ResidualRefitting::trkExtrap | ( | DetId | detid, |
int | iTrkLink, | ||
int | iTrk, | ||
int | iRec, | ||
FreeTrajectoryState | freeTrajState, | ||
LocalPoint | recPoint, | ||
storage_trackExtrap & | storeTemp | ||
) |
Definition at line 688 of file ResidualRefitting.cc.
References gather_cfg::cout, debug_, DetId::det(), PV3DBase< T, PVType, FrameType >::eta(), TrajectoryStateOnSurface::globalPosition(), ResidualRefitting::storage_trackExtrap::gpEta_, ResidualRefitting::storage_trackExtrap::gpPhi_, ResidualRefitting::storage_trackExtrap::gpX_, ResidualRefitting::storage_trackExtrap::gpY_, ResidualRefitting::storage_trackExtrap::gpZ_, TrajectoryStateOnSurface::isValid(), TrajectoryStateOnSurface::localPosition(), ResidualRefitting::storage_trackExtrap::lpX_, ResidualRefitting::storage_trackExtrap::lpY_, ResidualRefitting::storage_trackExtrap::lpZ_, DetId::Muon, ResidualRefitting::storage_trackExtrap::muonLink_, PV3DBase< T, PVType, FrameType >::phi(), ResidualRefitting::storage_trackExtrap::recLink_, ResidualRefitting::storage_trackExtrap::resX_, ResidualRefitting::storage_trackExtrap::resY_, ResidualRefitting::storage_trackExtrap::resZ_, ReturnSector(), ReturnStation(), GeomDet::surface(), thePropagator, theService, align::Tracker, MuonServiceProxy::trackingGeometry(), PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().
Referenced by CollectTrackHits(), and NewTrackMeasurements().
{ bool dump_ = debug_; if (dump_) std::cout<< "In the trkExtrap function"<<std::endl; float gpExtrapX = -99999; float gpExtrapY = -99999; float gpExtrapZ = -99999; float gpExtrapEta = -99999; float gpExtrapPhi = -99999; float lpX = -99999; float lpY = -99999; float lpZ = -99999; // // Get the local positions for the recHits // float recLpX = recPoint.x(); float recLpY = recPoint.y(); float recLpZ = recPoint.z(); float resX = -9999; float resY = -9999; float resZ = -9999; const GeomDet* gdet = theService->trackingGeometry()->idToDet(detid); // TrajectoryStateOnSurface surfTest = prop.propagate(freeTrajState, gdet->surface()); TrajectoryStateOnSurface surfTest = thePropagator->propagate(freeTrajState, gdet->surface()); if (surfTest.isValid()) { GlobalPoint globTest = surfTest.globalPosition(); gpExtrapX = globTest.x(); gpExtrapY = globTest.y(); gpExtrapZ = globTest.z(); gpExtrapEta = globTest.eta(); gpExtrapPhi = globTest.phi(); LocalPoint loc = surfTest.localPosition(); if (detid.det() == DetId::Muon || detid.det() == DetId::Tracker) { lpX = loc.x(); lpY = loc.y(); lpZ = loc.z(); resX = lpX - recLpX; resY = lpY - recLpY; resZ = lpZ - recLpZ; } } storeTemp.muonLink_ [iTrk] = iTrkLink ; storeTemp.recLink_ [iTrk] = iRec ; storeTemp.gpX_ [iTrk] = gpExtrapX ; storeTemp.gpY_ [iTrk] = gpExtrapY ; storeTemp.gpZ_ [iTrk] = gpExtrapZ ; storeTemp.gpEta_ [iTrk] = gpExtrapEta; storeTemp.gpPhi_ [iTrk] = gpExtrapPhi; storeTemp.lpX_ [iTrk] = lpX ; storeTemp.lpY_ [iTrk] = lpY ; storeTemp.lpZ_ [iTrk] = lpZ ; storeTemp.resX_ [iTrk] = resX ; storeTemp.resY_ [iTrk] = resY ; storeTemp.resZ_ [iTrk] = resZ ; printf("station: %d\tsector: %d\tresX storage: %4.2f\n", ReturnStation(detid), ReturnSector(detid), resX); }
void ResidualRefitting::zero_muon | ( | ResidualRefitting::storage_muon * | str | ) |
Definition at line 1001 of file ResidualRefitting.cc.
References ResidualRefitting::storage_muon::chiSq_, ResidualRefitting::storage_muon::chiSqOvrNdf_, ResidualRefitting::storage_muon::eta_, i, ResidualRefitting::storage_muon::n_, N_MAX_STORED, ResidualRefitting::storage_muon::ndf_, ResidualRefitting::storage_muon::numRecHits_, ResidualRefitting::storage_muon::p_, ResidualRefitting::storage_muon::phi_, and ResidualRefitting::storage_muon::pt_.
Referenced by zero_storage().
void ResidualRefitting::zero_storage | ( | ) |
Definition at line 901 of file ResidualRefitting.cc.
References debug_, ResidualRefitting::storage_hit::n_, ResidualRefitting::storage_trackHit::n_, samExtrap120_, storageGmrNew_, storageGmrNoPXBLayer1, storageGmrNoPXBLayer2, storageGmrNoPXBLayer3, storageGmrNoPXF, storageGmrNoSt1_, storageGmrNoSt2_, storageGmrNoSt3_, storageGmrNoSt4_, storageGmrNoTEC, storageGmrNoTIBLayer1, storageGmrNoTIBLayer2, storageGmrNoTIBLayer3, storageGmrNoTIBLayer4, storageGmrNoTID, storageGmrNoTOBLayer1, storageGmrNoTOBLayer2, storageGmrNoTOBLayer3, storageGmrNoTOBLayer4, storageGmrNoTOBLayer5, storageGmrNoTOBLayer6, storageGmrOld_, storageRecMuon_, storageSamNew_, storageSamNoSt1_, storageSamNoSt2_, storageSamNoSt3_, storageSamNoSt4_, storageTrackExtrapRec_, storageTrackExtrapRecNoSt1_, storageTrackExtrapRecNoSt2_, storageTrackExtrapRecNoSt3_, storageTrackExtrapRecNoSt4_, storageTrackExtrapTracker_, storageTrackHit_, storageTrackNoPXBLayer1, storageTrackNoPXBLayer2, storageTrackNoPXBLayer3, storageTrackNoPXF, storageTrackNoTEC, storageTrackNoTIBLayer1, storageTrackNoTIBLayer2, storageTrackNoTIBLayer3, storageTrackNoTIBLayer4, storageTrackNoTID, storageTrackNoTOBLayer1, storageTrackNoTOBLayer2, storageTrackNoTOBLayer3, storageTrackNoTOBLayer4, storageTrackNoTOBLayer5, storageTrackNoTOBLayer6, storageTrkNew_, storageTrkNoPXBLayer1, storageTrkNoPXBLayer2, storageTrkNoPXBLayer3, storageTrkNoPXF, storageTrkNoTEC, storageTrkNoTIBLayer1, storageTrkNoTIBLayer2, storageTrkNoTIBLayer3, storageTrkNoTIBLayer4, storageTrkNoTID, storageTrkNoTOBLayer1, storageTrkNoTOBLayer2, storageTrkNoTOBLayer3, storageTrkNoTOBLayer4, storageTrkNoTOBLayer5, storageTrkNoTOBLayer6, trackExtrap120_, zero_muon(), and zero_trackExtrap().
Referenced by analyze().
{ if (debug_) printf("zero_storage\n"); zero_muon(&storageGmrOld_ ); zero_muon(&storageGmrNew_ ); zero_muon(&storageSamNew_ ); zero_muon(&storageTrkNew_ ); zero_muon(&storageGmrNoSt1_ ); zero_muon(&storageSamNoSt1_ ); zero_muon(&storageGmrNoSt2_ ); zero_muon(&storageSamNoSt2_ ); zero_muon(&storageGmrNoSt3_ ); zero_muon(&storageSamNoSt3_ ); zero_muon(&storageGmrNoSt4_ ); zero_muon(&storageSamNoSt4_ ); //zero out the tracker zero_muon(&storageGmrNoPXBLayer1 ); zero_muon(&storageGmrNoPXBLayer2 ); zero_muon(&storageGmrNoPXBLayer3 ); zero_muon(&storageGmrNoPXF ); zero_muon(&storageGmrNoTIBLayer1 ); zero_muon(&storageGmrNoTIBLayer2 ); zero_muon(&storageGmrNoTIBLayer3 ); zero_muon(&storageGmrNoTIBLayer4 ); zero_muon(&storageGmrNoTID ); zero_muon(&storageGmrNoTOBLayer1 ); zero_muon(&storageGmrNoTOBLayer2 ); zero_muon(&storageGmrNoTOBLayer3 ); zero_muon(&storageGmrNoTOBLayer4 ); zero_muon(&storageGmrNoTOBLayer5 ); zero_muon(&storageGmrNoTOBLayer6 ); zero_muon(&storageGmrNoTEC ); zero_muon(&storageTrkNoPXBLayer1 ); zero_muon(&storageTrkNoPXBLayer2 ); zero_muon(&storageTrkNoPXBLayer3 ); zero_muon(&storageTrkNoPXF ); zero_muon(&storageTrkNoTIBLayer1 ); zero_muon(&storageTrkNoTIBLayer2 ); zero_muon(&storageTrkNoTIBLayer3 ); zero_muon(&storageTrkNoTIBLayer4 ); zero_muon(&storageTrkNoTID ); zero_muon(&storageTrkNoTOBLayer1 ); zero_muon(&storageTrkNoTOBLayer2 ); zero_muon(&storageTrkNoTOBLayer3 ); zero_muon(&storageTrkNoTOBLayer4 ); zero_muon(&storageTrkNoTOBLayer5 ); zero_muon(&storageTrkNoTOBLayer6 ); zero_muon(&storageTrkNoTEC ); zero_trackExtrap(&storageTrackExtrapRec_ ); zero_trackExtrap(&storageTrackExtrapTracker_ ); zero_trackExtrap(&storageTrackExtrapRecNoSt1_ ); zero_trackExtrap(&storageTrackExtrapRecNoSt2_ ); zero_trackExtrap(&storageTrackExtrapRecNoSt3_ ); zero_trackExtrap(&storageTrackExtrapRecNoSt4_ ); zero_trackExtrap(&trackExtrap120_ ); zero_trackExtrap(&samExtrap120_ ); zero_trackExtrap(&storageTrackNoPXBLayer1 ); zero_trackExtrap(&storageTrackNoPXBLayer2 ); zero_trackExtrap(&storageTrackNoPXBLayer3 ); zero_trackExtrap(&storageTrackNoPXF ); zero_trackExtrap(&storageTrackNoTIBLayer1 ); zero_trackExtrap(&storageTrackNoTIBLayer2 ); zero_trackExtrap(&storageTrackNoTIBLayer3 ); zero_trackExtrap(&storageTrackNoTIBLayer4 ); zero_trackExtrap(&storageTrackNoTOBLayer1 ); zero_trackExtrap(&storageTrackNoTOBLayer2 ); zero_trackExtrap(&storageTrackNoTOBLayer3 ); zero_trackExtrap(&storageTrackNoTOBLayer4 ); zero_trackExtrap(&storageTrackNoTOBLayer5 ); zero_trackExtrap(&storageTrackNoTOBLayer6 ); zero_trackExtrap(&storageTrackNoTEC ); zero_trackExtrap(&storageTrackNoTID ); storageRecMuon_ .n_ = 0; storageTrackHit_ .n_ = 0; }
void ResidualRefitting::zero_trackExtrap | ( | ResidualRefitting::storage_trackExtrap * | str | ) |
Definition at line 1021 of file ResidualRefitting.cc.
References ResidualRefitting::storage_trackExtrap::gpEta_, ResidualRefitting::storage_trackExtrap::gpPhi_, ResidualRefitting::storage_trackExtrap::gpX_, ResidualRefitting::storage_trackExtrap::gpY_, ResidualRefitting::storage_trackExtrap::gpZ_, i, ResidualRefitting::storage_trackExtrap::lpX_, ResidualRefitting::storage_trackExtrap::lpY_, ResidualRefitting::storage_trackExtrap::lpZ_, ResidualRefitting::storage_trackExtrap::muonLink_, ResidualRefitting::storage_trackExtrap::n_, N_MAX_STORED_HIT, ResidualRefitting::storage_trackExtrap::recLink_, ResidualRefitting::storage_trackExtrap::resX_, ResidualRefitting::storage_trackExtrap::resY_, and ResidualRefitting::storage_trackExtrap::resZ_.
Referenced by zero_storage().
{ str->n_ = 0; for (int i = 0; i < ResidualRefitting::N_MAX_STORED_HIT; i++) { str->muonLink_ [i] = -9999; str->recLink_ [i] = -9999; str->gpX_ [i] = -9999; str->gpY_ [i] = -9999; str->gpZ_ [i] = -9999; str->gpEta_ [i] = -9999; str->gpPhi_ [i] = -9999; str->lpX_ [i] = -9999; str->lpY_ [i] = -9999; str->lpZ_ [i] = -9999; str->resX_ [i] = -9999; str->resY_ [i] = -9999; str->resZ_ [i] = -9999; } }
Definition at line 276 of file ResidualRefitting.h.
Referenced by analyze(), CollectTrackHits(), cylExtrapTrkSam(), freeTrajStateMuon(), MatchTrackWithRecHits(), StoreTrackerRecHits(), trkExtrap(), and zero_storage().
Definition at line 61 of file ResidualRefitting.h.
Referenced by analyze(), and beginJob().
Definition at line 264 of file ResidualRefitting.h.
Referenced by analyze().
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Referenced by analyze().
Definition at line 264 of file ResidualRefitting.h.
Referenced by analyze().
Definition at line 264 of file ResidualRefitting.h.
Referenced by analyze().
Definition at line 264 of file ResidualRefitting.h.
Referenced by analyze().
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.
Referenced by analyze().
const int ResidualRefitting::N_MAX_STORED = 10 [static, private] |
Definition at line 40 of file ResidualRefitting.h.
Referenced by analyze(), and zero_muon().
const int ResidualRefitting::N_MAX_STORED_HIT = 1000 [static, private] |
Definition at line 41 of file ResidualRefitting.h.
Referenced by zero_trackExtrap().
TBranch* ResidualRefitting::outputBranch_ |
Definition at line 282 of file ResidualRefitting.h.
Referenced by analyze(), beginJob(), branchMuon(), and branchTrackExtrap().
Definition at line 279 of file ResidualRefitting.h.
Referenced by beginJob(), endJob(), and ~ResidualRefitting().
std::string ResidualRefitting::outputFileName_ |
Definition at line 259 of file ResidualRefitting.h.
Referenced by beginJob().
Definition at line 281 of file ResidualRefitting.h.
Referenced by analyze(), beginJob(), branchMuon(), and branchTrackExtrap().
std::string ResidualRefitting::PropagatorSource_ |
Definition at line 261 of file ResidualRefitting.h.
Referenced by analyze().
const int ResidualRefitting::PXB = 1 [static, private] |
Definition at line 43 of file ResidualRefitting.h.
Referenced by StoreTrackerRecHits().
const int ResidualRefitting::PXF = 2 [static, private] |
Definition at line 44 of file ResidualRefitting.h.
Referenced by StoreTrackerRecHits().
Definition at line 186 of file ResidualRefitting.h.
Referenced by analyze(), beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by analyze(), beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 178 of file ResidualRefitting.h.
Referenced by beginJob(), CollectTrackHits(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 182 of file ResidualRefitting.h.
Referenced by analyze(), beginJob(), and zero_storage().
Definition at line 182 of file ResidualRefitting.h.
Referenced by analyze(), beginJob(), and zero_storage().
Definition at line 182 of file ResidualRefitting.h.
Referenced by analyze(), beginJob(), and zero_storage().
Definition at line 182 of file ResidualRefitting.h.
Referenced by analyze(), beginJob(), and zero_storage().
Definition at line 182 of file ResidualRefitting.h.
Referenced by analyze(), beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 179 of file ResidualRefitting.h.
Referenced by beginJob(), CollectTrackHits(), StoreTrackerRecHits(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 189 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
Definition at line 156 of file ResidualRefitting.h.
Referenced by beginJob(), and zero_storage().
const int ResidualRefitting::TEC = 6 [static, private] |
Definition at line 48 of file ResidualRefitting.h.
Referenced by StoreTrackerRecHits().
Definition at line 286 of file ResidualRefitting.h.
Referenced by analyze(), and freeTrajStateMuon().
Definition at line 289 of file ResidualRefitting.h.
Referenced by analyze(), cylExtrapTrkSam(), and trkExtrap().
Definition at line 288 of file ResidualRefitting.h.
Referenced by analyze(), CollectTrackHits(), NewTrackMeasurements(), ResidualRefitting(), and trkExtrap().
const int ResidualRefitting::TIB = 3 [static, private] |
Definition at line 45 of file ResidualRefitting.h.
Referenced by StoreTrackerRecHits().
const int ResidualRefitting::TID = 4 [static, private] |
Definition at line 46 of file ResidualRefitting.h.
Referenced by StoreTrackerRecHits().
const int ResidualRefitting::TOB = 5 [static, private] |
Definition at line 47 of file ResidualRefitting.h.
Referenced by StoreTrackerRecHits().
Definition at line 186 of file ResidualRefitting.h.
Referenced by analyze(), beginJob(), and zero_storage().
Definition at line 287 of file ResidualRefitting.h.
Definition at line 264 of file ResidualRefitting.h.