CMS 3D CMS Logo

KVFTest.cc
Go to the documentation of this file.
2 
10 
18 
19 #include <iostream>
20 #include <memory>
21 
22 using namespace reco;
23 using namespace edm;
24 using namespace std;
25 
26 KVFTest::KVFTest(const edm::ParameterSet& iConfig) : theConfig(iConfig) {
27  token_tracks = consumes<TrackCollection>(iConfig.getParameter<string>("TrackLabel"));
28  outputFile_ = iConfig.getUntrackedParameter<std::string>("outputFile");
29  kvfPSet = iConfig.getParameter<edm::ParameterSet>("KVFParameters");
30  rootFile_ = TFile::Open(outputFile_.c_str(), "RECREATE");
31  edm::LogInfo("RecoVertex/KVFTest") << "Initializing KVF TEST analyser - Output file: " << outputFile_ << "\n";
32 
33  token_TrackTruth = consumes<TrackingParticleCollection>(edm::InputTag("trackingtruth", "TrackTruth"));
34  token_VertexTruth = consumes<TrackingVertexCollection>(edm::InputTag("trackingtruth", "VertexTruth"));
36  consumes<reco::TrackToTrackingParticleAssociator>(edm::InputTag("trackAssociatorByChi2"));
37 }
38 
40 
42 
43 void KVFTest::endJob() {}
44 
45 //
46 // member functions
47 //
48 
49 void KVFTest::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) {
51  iEvent.getByToken(token_associatorForParamAtPca, associatorForParamAtPca);
52 
53  if (not tree) {
55  iSetup.get<IdealMagneticFieldRecord>().get(magField);
56  tree = std::make_unique<SimpleVertexTree>("VertexFitter", magField.product());
57  }
58 
59  edm::LogInfo("RecoVertex/KVFTest") << "Reconstructing event number: " << iEvent.id() << "\n";
60 
61  // get RECO tracks from the event
62  // `tks` can be used as a ptr to a reco::TrackCollection
64  iEvent.getByToken(token_tracks, tks);
65  if (!tks.isValid()) {
66  edm::LogInfo("RecoVertex/KVFTest") << "Exception during event number: " << iEvent.id() << "\n";
67  } else {
68  edm::LogInfo("RecoVertex/KVFTest") << "Found: " << (*tks).size() << " reconstructed tracks"
69  << "\n";
70  std::cout << "got " << (*tks).size() << " tracks " << std::endl;
71 
72  // Transform Track to TransientTrack
73 
74  //get the builder:
76  iSetup.get<TransientTrackRecord>().get("TransientTrackBuilder", theB);
77  //do the conversion:
78  std::vector<TransientTrack> t_tks = (*theB).build(tks);
79 
80  edm::LogInfo("RecoVertex/KVFTest") << "Found: " << t_tks.size() << " reconstructed tracks"
81  << "\n";
82 
83  // Call the KalmanVertexFitter if more than 1 track
84  if (t_tks.size() > 1) {
85  // KalmanVertexFitter kvf(kvfPSet);
86  KalmanVertexFitter kvf(true);
87  TransientVertex tv = kvf.vertex(t_tks);
88 
89  std::cout << "Position: " << Vertex::Point(tv.position()) << "\n";
90 
91  // For the analysis: compare to your SimVertex
94  iEvent.getByToken(token_TrackTruth, TPCollectionH);
95  if (!TPCollectionH.isValid()) {
96  edm::LogInfo("RecoVertex/KVFTest") << "Exception during event number: " << iEvent.id() << "\n";
97  } else {
98  const TrackingParticleCollection tPC = *(TPCollectionH.product());
99  reco::RecoToSimCollection recSimColl = associatorForParamAtPca->associateRecoToSim(tks, TPCollectionH);
100  tree->fill(tv, &sv, &recSimColl);
101  }
102  }
103  }
104 }
105 
106 //Returns the first vertex in the list.
107 
109  // get the simulated vertices
111  iEvent.getByToken(token_VertexTruth, TVCollectionH);
112  const TrackingVertexCollection tPC = *(TVCollectionH.product());
113 
114  // Handle<edm::SimVertexContainer> simVtcs;
115  // iEvent.getByLabel("g4SimHits", simVtcs);
116  // std::cout << "SimVertex " << simVtcs->size() << std::endl;
117  // for(edm::SimVertexContainer::const_iterator v=simVtcs->begin();
118  // v!=simVtcs->end(); ++v){
119  // std::cout << "simvtx "
120  // << v->position().x() << " "
121  // << v->position().y() << " "
122  // << v->position().z() << " "
123  // << v->parentIndex() << " "
124  // << v->noParent() << " "
125  // << std::endl;
126  // }
127  return *(tPC.begin());
128 }
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
KalmanVertexFitter::vertex
CachingVertex< 5 > vertex(const std::vector< reco::TransientTrack > &tracks) const override
Definition: KalmanVertexFitter.h:49
Handle.h
KVFTest::KVFTest
KVFTest(const edm::ParameterSet &)
Definition: KVFTest.cc:26
MessageLogger.h
KVFTest::rootFile_
TFile * rootFile_
Definition: KVFTest.h:52
edm::Handle::product
T const * product() const
Definition: Handle.h:70
KalmanVertexFitter.h
ESHandle.h
edm
HLT enums.
Definition: AlignableModifier.h:19
tree
Definition: tree.py:1
reco::TrackToTrackingParticleAssociator::associateRecoToSim
reco::RecoToSimCollection associateRecoToSim(const edm::Handle< edm::View< reco::Track >> &tCH, const edm::Handle< TrackingParticleCollection > &tPCH) const
Definition: TrackToTrackingParticleAssociator.h:64
gather_cfg.cout
cout
Definition: gather_cfg.py:144
TransientVertex::position
GlobalPoint position() const
Definition: TransientVertex.h:169
TrackingVertexCollection
std::vector< TrackingVertex > TrackingVertexCollection
Definition: TrackingVertexContainer.h:8
KVFTest::~KVFTest
~KVFTest() override
Definition: KVFTest.cc:39
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
TransientTrack.h
edm::Handle< reco::TrackToTrackingParticleAssociator >
IdealMagneticFieldRecord
Definition: IdealMagneticFieldRecord.h:11
KVFTest::token_associatorForParamAtPca
edm::EDGetTokenT< reco::TrackToTrackingParticleAssociator > token_associatorForParamAtPca
Definition: KVFTest.h:58
MakerMacros.h
Point
math::XYZPoint Point
Definition: TrackerDpgAnalysis.cc:106
Track.h
edm::EventSetup::get
T get() const
Definition: EventSetup.h:80
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
KVFTest::token_tracks
edm::EDGetTokenT< reco::TrackCollection > token_tracks
Definition: KVFTest.h:55
pfDeepBoostedJetPreprocessParams_cfi.sv
sv
Definition: pfDeepBoostedJetPreprocessParams_cfi.py:352
TransientTrackRecord
Definition: TransientTrackRecord.h:11
IdealMagneticFieldRecord.h
edm::ESHandle< MagneticField >
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
Vertex.h
KVFTest.h
KVFTest::analyze
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: KVFTest.cc:49
KVFTest::beginJob
void beginJob() override
Definition: KVFTest.cc:41
TransientTrackBuilder.h
edm::ParameterSet
Definition: ParameterSet.h:47
KVFTest::endJob
void endJob() override
Definition: KVFTest.cc:43
edm::AssociationMap< edm::OneToManyWithQualityGeneric< edm::View< reco::Track >, TrackingParticleCollection, double > >
TrackingVertex
Definition: TrackingVertex.h:22
KVFTest
Definition: KVFTest.h:36
iEvent
int iEvent
Definition: GenABIO.cc:224
KVFTest::kvfPSet
edm::ParameterSet kvfPSet
Definition: KVFTest.h:50
MagneticField.h
TransientVertex
Definition: TransientVertex.h:18
edm::EventSetup
Definition: EventSetup.h:57
TransientTrackRecord.h
get
#define get
KVFTest::token_TrackTruth
edm::EDGetTokenT< TrackingParticleCollection > token_TrackTruth
Definition: KVFTest.h:56
VertexFwd.h
TransientVertex.h
std
Definition: JetResolutionObject.h:76
KVFTest::getSimVertex
TrackingVertex getSimVertex(const edm::Event &iEvent) const
Definition: KVFTest.cc:108
TrackingParticleCollection
std::vector< TrackingParticle > TrackingParticleCollection
Definition: TrackingParticleFwd.h:8
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
KVFTest::token_VertexTruth
edm::EDGetTokenT< TrackingVertexCollection > token_VertexTruth
Definition: KVFTest.h:57
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
edm::Event
Definition: Event.h:73
KVFTest::outputFile_
std::string outputFile_
Definition: KVFTest.h:54
edm::InputTag
Definition: InputTag.h:15
KalmanVertexFitter
Definition: KalmanVertexFitter.h:22