CMS 3D CMS Logo

RECOVertex.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <sstream>
3 #include <istream>
4 #include <fstream>
5 #include <iomanip>
6 #include <cstdlib>
7 #include <cstring>
8 
9 #include "RECOVertex.h"
10 #include "HLTMessages.h"
11 
12 static const size_t kMaxVrt = 50;
13 
15 
16  //set parameter defaults
17  _Debug=false;
18 
19  NVrtx = 0;
20  VertexCand_x = new float[kMaxVrt];
21  VertexCand_y = new float[kMaxVrt];
22  VertexCand_z = new float[kMaxVrt];
23  VertexCand_tracks = new int[kMaxVrt];
24  VertexCand_chi2 = new float[kMaxVrt];
25  VertexCand_ndof = new float[kMaxVrt];
26 }
27 
29  delete[] VertexCand_x;
30  delete[] VertexCand_y;
31  delete[] VertexCand_z;
32  delete[] VertexCand_tracks;
33  delete[] VertexCand_chi2;
34  delete[] VertexCand_ndof;
35 }
36 
38 {
39  NVrtx = 0;
40  std::memset(VertexCand_x, '\0', kMaxVrt * sizeof(float));
41  std::memset(VertexCand_y, '\0', kMaxVrt * sizeof(float));
42  std::memset(VertexCand_z, '\0', kMaxVrt * sizeof(float));
43  std::memset(VertexCand_tracks, '\0', kMaxVrt * sizeof(int));
44  std::memset(VertexCand_chi2, '\0', kMaxVrt * sizeof(float));
45  std::memset(VertexCand_ndof, '\0', kMaxVrt * sizeof(float));
46 }
47 
48 /* Setup the analysis to put the branch-variables into the tree. */
49 void RECOVertex::setup(const edm::ParameterSet& pSet, TTree* HltTree, std::string vertexType) {
50 
51  edm::ParameterSet myHltParams = pSet.getParameter<edm::ParameterSet>("RunParameters") ;
52  std::vector<std::string> parameterNames = myHltParams.getParameterNames() ;
53 
54  for (auto & parameterName : parameterNames){
55  if ( parameterName == "Debug" ) _Debug = myHltParams.getParameter<bool>( parameterName );
56  }
57 
58  TString br_recoNVrt = "recoNVrt";
59  br_recoNVrt.Append(vertexType);
60  HltTree->Branch(br_recoNVrt, & NVrtx, "NVrtx/I");
61 
62  TString br_recoVrtX = "recoVrtX";
63  br_recoVrtX.Append(vertexType);
64  HltTree->Branch(br_recoVrtX, VertexCand_x, "recoVrtX[NVrtx]/F");
65 
66  TString br_recoVrtY = "recoVrtY";
67  br_recoVrtY.Append(vertexType);
68  HltTree->Branch(br_recoVrtY, VertexCand_y, "recoVrtY[NVrtx]/F");
69 
70  TString br_recoVrtZ = "recoVrtZ";
71  br_recoVrtZ.Append(vertexType);
72  HltTree->Branch(br_recoVrtZ, VertexCand_z, "recoVrtZ[NVrtx]/F");
73 
74  TString br_recoVrtNtrk = "recoVrtNtrk";
75  br_recoVrtNtrk.Append(vertexType);
76  HltTree->Branch(br_recoVrtNtrk, VertexCand_tracks, "recoVrtNtrk[NVrtx]/I");
77 
78  TString br_recoVrtChi2 = "recoVrtChi2";
79  br_recoVrtChi2.Append(vertexType);
80  HltTree->Branch(br_recoVrtChi2, VertexCand_chi2, "recoVrtChi2[NVrtx]/F");
81 
82  TString br_recoVrtNdof = "recoVrtNdof";
83  br_recoVrtNdof.Append(vertexType);
84  HltTree->Branch(br_recoVrtNdof, VertexCand_ndof, "recoVrtNdof[NVrtx]/F");
85 
86 
87 
88 }
89 
90 /* **Analyze the event** */
91 void RECOVertex::analyze(edm::Handle<reco::VertexCollection> recoVertexs, TTree* HltTree) {
92 
93  // reset the tree variables
94  clear();
95 
96  if ( recoVertexs.isValid() ) {
97  const reco::VertexCollection* vertexs = recoVertexs.product();
98  reco::VertexCollection::const_iterator vertex_i;
99 
100  size_t size = std::min(kMaxVrt, size_t(vertexs->size()) );
101  NVrtx= size;
102 
103  int nVertexCand=0;
104  if (_Debug) std::cout << "Found " << vertexs->size() << " vertices" << std::endl;
105  for (vertex_i = vertexs->begin(); vertex_i != vertexs->end(); vertex_i++){
106  if (nVertexCand>=NVrtx) break;
107  VertexCand_x[nVertexCand] = vertex_i->x();
108  VertexCand_y[nVertexCand] = vertex_i->y();
109  VertexCand_z[nVertexCand] = vertex_i->z();
110  VertexCand_tracks[nVertexCand] = vertex_i->tracksSize();
111  VertexCand_chi2[nVertexCand] = vertex_i->chi2();
112  VertexCand_ndof[nVertexCand] = vertex_i->ndof();
113  if (_Debug) {
114  std::cout << "RECOVertex -- VX, VY VZ = "
115  << VertexCand_x[nVertexCand] << " "
116  << VertexCand_y[nVertexCand] << " "
117  << VertexCand_z[nVertexCand]
118  << std::endl;
119  std::cout << "RECOVertex -- Ntracks, Chi2/Dof = "
120  << VertexCand_tracks[nVertexCand] << " "
121  << VertexCand_chi2[nVertexCand] << " / " << VertexCand_ndof[nVertexCand]
122  << std::endl;
123  }
124  nVertexCand++;
125 
126  }
127  }
128 }
129 
size
Write out results.
T getParameter(std::string const &) const
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
float * VertexCand_y
Definition: RECOVertex.h:35
static const size_t kMaxVrt
Definition: RECOVertex.cc:12
void setup(const edm::ParameterSet &pSet, TTree *tree, std::string vertexType)
Definition: RECOVertex.cc:49
float * VertexCand_ndof
Definition: RECOVertex.h:38
void analyze(edm::Handle< reco::VertexCollection > recoVertexs, TTree *tree)
Definition: RECOVertex.cc:91
T min(T a, T b)
Definition: MathUtil.h:58
std::vector< std::string > getParameterNames() const
bool isValid() const
Definition: HandleBase.h:74
float * VertexCand_z
Definition: RECOVertex.h:35
bool _Debug
Definition: RECOVertex.h:41
T const * product() const
Definition: Handle.h:74
float * VertexCand_chi2
Definition: RECOVertex.h:37
int * VertexCand_tracks
Definition: RECOVertex.h:36
float * VertexCand_x
Definition: RECOVertex.h:35
void clear(void)
Definition: RECOVertex.cc:37