CMS 3D CMS Logo

SimpleVertexTree.cc
Go to the documentation of this file.
2 
3 #include "TROOT.h"
4 #include "TTree.h"
5 #include "TH1F.h"
6 #include <iostream>
7 
8 using namespace std;
9 
10 SimpleVertexTree::SimpleVertexTree(const char *filterName, const MagneticField *magField) : theFitterName(filterName) {
11  vertexTree = new TTree(filterName, "Vertex fit results");
12  // trackTest
13  // = SimpleConfigurable<bool> (false, "SimpleVertexTree:trackTest").value();
14  // if (trackTest) {
15  // maxTrack = SimpleConfigurable<int> (100, "SimpleVertexTree:maximumTracksToStore").value();
16  // } else
17  maxTrack = 0;
18  result = new VertexFitterResult(maxTrack, magField);
19 
20  vertexTree->Branch("vertex", (void *)result->vertexPresent(), "vertex/I");
21  vertexTree->Branch("simPos", (void *)result->simVertexPos(), "X/F:Y/F:Z/F");
22  vertexTree->Branch("recPos", (void *)result->recVertexPos(), "X/F:Y/F:Z/F");
23  vertexTree->Branch("recErr", (void *)result->recVertexErr(), "X/F:Y/F:Z/F");
24  vertexTree->Branch("nbrTrk", (void *)result->trackInformation(), "Sim/I:Rec/I:Shared/I");
25  vertexTree->Branch("chiTot", (void *)result->chi2Information(), "chiTot/F");
26  vertexTree->Branch("ndf", (void *)(result->chi2Information() + 1), "ndf/F");
27  vertexTree->Branch("chiProb", (void *)(result->chi2Information() + 2), "chiProb/F");
28  vertexTree->Branch("time", (void *)result->time(), "time/F");
29 
30  parameterNames[0] = new TString("ptinv");
31  parameterNames[1] = new TString("theta");
32  parameterNames[2] = new TString("phi");
33  parameterNames[3] = new TString("timp");
34  parameterNames[4] = new TString("limp");
35 
36  vertexTree->Branch("simTracks", (void *)result->numberSimTracks(), "simTracks/I");
37  vertexTree->Branch("simTrack_recIndex", (void *)result->simTrack_recIndex(), "simTrack_recIndex[simTracks]/I");
38  defineTrackBranch("sim", "Par", &VertexFitterResult::simParameters, "simTracks");
39 
40  vertexTree->Branch("recTracks", (void *)result->numberRecTracks(), "recTracks/I");
41  vertexTree->Branch("recTrack_simIndex", (void *)result->recTrack_simIndex(), "recTrack_simIndex[recTracks]/I");
42  vertexTree->Branch("recTrack_weight", (void *)result->recTrackWeight(), "recTrack_weight[recTracks]/F");
43  defineTrackBranch("rec", "Par", &VertexFitterResult::recParameters, "recTracks");
44  defineTrackBranch("ref", "Par", &VertexFitterResult::refParameters, "recTracks");
45  defineTrackBranch("rec", "Err", &VertexFitterResult::recErrors, "recTracks");
46  defineTrackBranch("ref", "Err", &VertexFitterResult::refErrors, "recTracks");
47 
48  numberOfVertices = 0;
49 }
50 
52  const TString &type,
53  const float *(VertexFitterResult::*pfunc)(const int)const,
54  const TString &index) {
55  TString branchName, branchVariables;
56  for (int i = 0; i < 5; i++) {
57  branchName = prefix + type + '_' + *parameterNames[i];
58  branchVariables = branchName + '[' + index + "]/F";
59  vertexTree->Branch(branchName, (void *)(result->*pfunc)(i), branchVariables);
60  }
61 }
62 
64  std::cout << std::endl << "End of SimpleVertexTree for " << theFitterName << std::endl;
65  std::cout << std::endl << "Number of vertices fit: " << numberOfVertices << std::endl;
66 
67  //
68  // save current root directory
69  //
70  TDirectory *rootDir = gDirectory;
71  //
72  // close files
73  //
74  vertexTree->GetDirectory()->cd();
75  vertexTree->Write();
76  if (numberOfVertices > 0) {
77  TH1F *resX = new TH1F(theFitterName + "_ResX", "Residual x coordinate: " + theFitterName, 100, -0.03, 0.03);
78  TH1F *resY = new TH1F(theFitterName + "_ResY", "Residual y coordinate: " + theFitterName, 100, -0.03, 0.03);
79  TH1F *resZ = new TH1F(theFitterName + "_ResZ", "Residual z coordinate: " + theFitterName, 100, -0.03, 0.03);
80  TH1F *pullX = new TH1F(theFitterName + "_PullX", "Pull x coordinate: " + theFitterName, 100, -10., 10.);
81  TH1F *pullY = new TH1F(theFitterName + "_PullY", "Pull y coordinate: " + theFitterName, 100, -10., 10.);
82  TH1F *pullZ = new TH1F(theFitterName + "_PullZ", "Pull z coordinate: " + theFitterName, 100, -10., 10.);
83  TH1F *chiNorm = new TH1F(theFitterName + "_ChiNorm", "Normalized chi-square: " + theFitterName, 100, 0., 10.);
84  TH1F *chiProb = new TH1F(theFitterName + "_ChiProb", "Chi-square probability: " + theFitterName, 100, 0., 1.);
85  vertexTree->Project(theFitterName + "_ResX", "(simPos.X-recPos.X)");
86  vertexTree->Project(theFitterName + "_ResY", "(simPos.Y-recPos.Y)");
87  vertexTree->Project(theFitterName + "_ResZ", "(simPos.Z-recPos.Z)");
88  vertexTree->Project(theFitterName + "_PullX", "(simPos.X-recPos.X)/recErr.X");
89  vertexTree->Project(theFitterName + "_PullY", "(simPos.Y-recPos.Y)/recErr.Y");
90  vertexTree->Project(theFitterName + "_PullZ", "(simPos.Z-recPos.Z)/recErr.Z");
91  vertexTree->Project(theFitterName + "_ChiNorm", "chiTot/ndf");
92  vertexTree->Project(theFitterName + "_ChiProb", "chiProb");
93  std::cout << "Mean of Residual distribution X: " << resX->GetMean() << std::endl;
94  std::cout << "Mean of Residual distribution Y: " << resY->GetMean() << std::endl;
95  std::cout << "Mean of Residual distribution Z: " << resZ->GetMean() << std::endl;
96  std::cout << "RMS of Residual distribution X: " << resX->GetRMS() << std::endl;
97  std::cout << "RMS of Residual distribution Y: " << resY->GetRMS() << std::endl;
98  std::cout << "RMS of Residual distribution Z: " << resZ->GetRMS() << std::endl;
99  std::cout << "Mean of Pull distribution X: " << pullX->GetMean() << std::endl;
100  std::cout << "Mean of Pull distribution Y: " << pullY->GetMean() << std::endl;
101  std::cout << "Mean of Pull distribution Z: " << pullZ->GetMean() << std::endl;
102  std::cout << "RMS of Pull distribution X: " << pullX->GetRMS() << std::endl;
103  std::cout << "RMS of Pull distribution Y: " << pullY->GetRMS() << std::endl;
104  std::cout << "RMS of Pull distribution Z: " << pullZ->GetRMS() << std::endl;
105  std::cout << "Average chi-square probability: " << chiProb->GetMean() << std::endl;
106  std::cout << "Average normalized chi-square : " << chiNorm->GetMean() << std::endl;
107  resX->Write();
108  resY->Write();
109  resZ->Write();
110  pullX->Write();
111  pullY->Write();
112  pullZ->Write();
113  chiNorm->Write();
114  chiProb->Write();
115  }
116  delete vertexTree;
117  //
118  // restore directory
119  //
120  rootDir->cd();
121  std::cout << std::endl;
122 }
123 
125  const TrackingVertex *simv,
126  reco::RecoToSimCollection *recSimColl,
127  const float &time) {
128  result->fill(recv, simv, recSimColl, time);
129  fill();
130 }
131 
132 void SimpleVertexTree::fill(const TransientVertex &recv, const float &time) {
133  result->fill(recv, nullptr, nullptr, time);
134  fill();
135 }
136 
138  result->fill(TransientVertex(), simv, nullptr);
139  fill();
140 }
141 
142 // void SimpleVertexTree::fill(const RecVertex & recVertex,
143 // const std::vector < RecTrack > & recTrackV,
144 // const TkSimVertex * simv, const float &time)
145 // {
146 // result->fill(recVertex, recTrackV, simv, time);
147 // fill();
148 // }
149 //
150 // void SimpleVertexTree::fill(const std::vector < RecTrack > & recTrackV,
151 // const TkSimVertex * simv, const float &time)
152 // {
153 // result->fill(RecVertex(), recTrackV, simv, time);
154 // fill();
155 // }
156 
159  static std::atomic<int> nFill{0};
160  TDirectory *rootDir = gDirectory;
161  //
162  // fill entry
163  //
164  vertexTree->GetDirectory()->cd();
165  vertexTree->Fill();
166  if ((++nFill) % 1000 == 0)
167  vertexTree->AutoSave();
168  //
169  // restore directory
170  //
171  rootDir->cd();
172  result->reset();
173 }
SimpleVertexTree::maxTrack
int maxTrack
Definition: SimpleVertexTree.h:104
mps_fire.i
i
Definition: mps_fire.py:355
electrons_cff.branchName
branchName
Definition: electrons_cff.py:492
VertexFitterResult::numberRecTracks
const int * numberRecTracks()
Definition: VertexFitterResult.h:52
gather_cfg.cout
cout
Definition: gather_cfg.py:144
VertexFitterResult::recParameters
const float * recParameters(const int i) const
Definition: VertexFitterResult.h:58
VertexFitterResult::reset
void reset()
Definition: VertexFitterResult.cc:203
VertexFitterResult::recErrors
const float * recErrors(const int i) const
Definition: VertexFitterResult.h:73
SimpleVertexTree::~SimpleVertexTree
virtual ~SimpleVertexTree()
Definition: SimpleVertexTree.cc:63
VertexFitterResult::vertexPresent
const int * vertexPresent() const
Definition: VertexFitterResult.h:48
SimpleVertexTree.h
VertexFitterResult::simTrack_recIndex
const int * simTrack_recIndex()
Definition: VertexFitterResult.h:54
VertexFitterResult::refParameters
const float * refParameters(const int i) const
Definition: VertexFitterResult.h:63
SimpleVertexTree::numberOfVertices
int numberOfVertices
Definition: SimpleVertexTree.h:98
VertexFitterResult::simParameters
const float * simParameters(const int i) const
Definition: VertexFitterResult.h:68
VertexFitterResult::recTrack_simIndex
const int * recTrack_simIndex()
Definition: VertexFitterResult.h:56
VertexFitterResult::time
const float * time() const
Definition: VertexFitterResult.h:49
edm::AssociationMap< edm::OneToManyWithQualityGeneric< edm::View< reco::Track >, TrackingParticleCollection, double > >
TrackingVertex
Definition: TrackingVertex.h:22
VertexFitterResult::recVertexPos
const float * recVertexPos() const
Definition: VertexFitterResult.h:44
VertexFitterResult::simVertexPos
const float * simVertexPos() const
Definition: VertexFitterResult.h:43
VertexFitterResult::recVertexErr
const float * recVertexErr() const
Definition: VertexFitterResult.h:45
VertexFitterResult::recTrackWeight
const float * recTrackWeight()
Definition: VertexFitterResult.h:57
SimpleVertexTree::vertexTree
TTree * vertexTree
Definition: SimpleVertexTree.h:99
SimpleVertexTree::SimpleVertexTree
SimpleVertexTree(const char *fitterName="VertexFitter", const MagneticField *magField=nullptr)
Definition: SimpleVertexTree.cc:10
TransientVertex
Definition: TransientVertex.h:18
VertexFitterResult::numberSimTracks
const int * numberSimTracks()
Definition: VertexFitterResult.h:51
pdwgDoubleElectron_cfi.filterName
filterName
Definition: pdwgDoubleElectron_cfi.py:7
type
type
Definition: HCALResponse.h:21
std
Definition: JetResolutionObject.h:76
VertexFitterResult::fill
void fill(const TransientVertex &recv, const TrackingVertex *simv=nullptr, reco::RecoToSimCollection *recSimColl=nullptr, const float &time=0)
Definition: VertexFitterResult.cc:52
SimpleVertexTree::result
VertexFitterResult * result
Definition: SimpleVertexTree.h:100
SimpleVertexTree::defineTrackBranch
void defineTrackBranch(const TString &prefix, const TString &type, const float *(VertexFitterResult::*pfunc)(const int) const, const TString &index)
Definition: SimpleVertexTree.cc:51
SimpleVertexTree::theFitterName
TString theFitterName
Definition: SimpleVertexTree.h:101
AlignmentPI::index
index
Definition: AlignmentPayloadInspectorHelper.h:46
VertexFitterResult::trackInformation
const int * trackInformation() const
Definition: VertexFitterResult.h:46
SimpleVertexTree::fill
void fill()
Definition: SimpleVertexTree.cc:157
VertexFitterResult::refErrors
const float * refErrors(const int i) const
Definition: VertexFitterResult.h:78
ntuplemaker.time
time
Definition: ntuplemaker.py:310
SimpleVertexTree::parameterNames
TString * parameterNames[5]
Definition: SimpleVertexTree.h:105
MagneticField
Definition: MagneticField.h:19
SimpleVertexTree::chiProb
float chiProb
Definition: SimpleVertexTree.h:97
VertexFitterResult
Definition: VertexFitterResult.h:24
VertexFitterResult::chi2Information
const float * chi2Information() const
Definition: VertexFitterResult.h:47
ZMuMuAnalysisNtupler_cff.prefix
prefix
Definition: ZMuMuAnalysisNtupler_cff.py:14