PrimaryVertexFinder_module.cc
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // PrimaryVertexFinder class
4 //
5 ////////////////////////////////////////////////////////////////////////
6 
7 // Framework includes
10 #include "fhiclcpp/ParameterSet.h"
14 #include "art_root_io/TFileService.h"
17 #include "canvas/Persistency/Common/FindMany.h"
18 #include "canvas/Persistency/Common/FindManyP.h"
19 
20 #include <iomanip>
21 #include <math.h>
22 #include <algorithm>
23 #include <vector>
24 #include <string>
25 
26 #include "TVector3.h"
27 #include "TH1F.h"
28 #include "TH2F.h"
29 
37 
38 ///vertex reconstruction
39 namespace vertex {
40 
42 
43  public:
44 
45  explicit PrimaryVertexFinder(fhicl::ParameterSet const& pset);
46  void beginJob();
47 
48 
49  void produce(art::Event& evt);
50 
51  private:
52 
53 
55  double fVertexWindow;
57  bool IsInVertexCollection(int a, std::vector<std::vector<int> > vertex_collection);
58  int IndexInVertexCollection(int a, int b, std::vector<std::vector<int> > vertex_collection);
59  bool IsInNewVertex(int a, std::vector<int> newvertex);
60  double gammavalue(TVector3 startpoint1, TVector3 startpoint2, TVector3 dircos1, TVector3 dircos2);
61  double alphavalue(double gamma, TVector3 startpoint1, TVector3 startpoint2, TVector3 dircos1, TVector3 dircos2);
62  double MinDist(double alpha, double gamma, TVector3 startpoint1, TVector3 startpoint2, TVector3 dircos1, TVector3 dircos2);
63  TVector3 PointOnExtendedTrack(double alphagamma, TVector3 startpoint, TVector3 dircos);
64  TH2F* fNoTracks;
70 
71  };
72 
73 }
74 
75 //------------------------------------------------------------------------------
76 bool sort_pred2(const std::pair<art::Ptr<recob::Track>,double>& left, const std::pair<art::Ptr<recob::Track>,double>& right)
77 {
78  return left.second < right.second;
79 }
80 
81 namespace vertex{
82 
83  //-----------------------------------------------------------------------------
85  : EDProducer{pset}
86  {
87  fTrackModuleLabel = pset.get< std::string >("TrackModuleLabel");
88  fVertexWindow = pset.get<double > ("VertexWindow");
89 
90  produces< std::vector<recob::Vertex> >();
91  produces< art::Assns<recob::Vertex, recob::Hit> >();
92  produces< art::Assns<recob::Vertex, recob::Track> >();
93  produces< art::Assns<recob::Vertex, recob::Shower> >();
94  }
95 
96  //-------------------------------------------------------------------------
98  // get access to the TFile service
100 
101  // fNoVertices= tfs->make<TH2F>("fNoVertices", ";Event No; No of vertices", 100,0, 100, 30, 0, 30);
102  fNoTracks= tfs->make<TH2F>("fNoTracks", ";Event No; No of Tracks", 10,0, 10, 10, 0, 10);
103  fLength_1stTrack = tfs->make<TH1F>("fLength_Track1", "Muon Track Length", 100,0,100);
104  fLength_2ndTrack = tfs->make<TH1F>("fLength_Track2", "2nd Track Length", 100,0,100);
105  fLength_3rdTrack = tfs->make<TH1F>("fLength_Track3", "3rd Track Length", 100,0,100);
106  fLength_4thTrack = tfs->make<TH1F>("fLength_Track4", "4th Track Length", 100,0,100);
107  fLength_5thTrack = tfs->make<TH1F>("fLength_Track5", "5th Track Length", 100,0,100);
108  }
109 
110 // //-----------------------------------------------------------------------------
112  {
113 
114  mf::LogInfo("PrimaryVertexFinder") << "------------------------------------------------------------------------------";
115 
116  // std::cout << "run : " << evt.Header().Run() << std::endl;
117  // std::cout << "subrun : " << evt.Header().Subrun() << std::endl;
118  //std::cout << "event : " << evt.Header().Event() << std::endl;
119 
120  mf::LogInfo("PrimaryVertexFinder") << "event : " << evt.id().event();
121 
122 
124 
125  //mf::LogInfo("PrimaryVertexFinder") << "I am in Primary vertex finder " << std::endl;
126 
127  art::Handle< std::vector<recob::Track> > trackListHandle;
128  evt.getByLabel(fTrackModuleLabel,trackListHandle);
129 
130  //Point to a collection of vertices to output.
131  std::unique_ptr< std::vector<recob::Vertex> > vcol(new std::vector<recob::Vertex>);
132  std::unique_ptr< art::Assns<recob::Vertex, recob::Hit> > vhassn(new art::Assns<recob::Vertex, recob::Hit>);
133  std::unique_ptr< art::Assns<recob::Vertex, recob::Track> > vtassn(new art::Assns<recob::Vertex, recob::Track>);
134  std::unique_ptr< art::Assns<recob::Vertex, recob::Shower> > vsassn(new art::Assns<recob::Vertex, recob::Shower>);
135 
136 
137  std::vector<recob::Track> const& trkIn = *trackListHandle;
138 
139  mf::LogInfo("PrimaryVertexFinder") << "number of tracks in this event = " << trkIn.size();
140  fNoTracks->Fill(evt.id().event(),trkIn.size());
141 
142  std::vector<recob::SpacePoint> startpoints_vec; // first space point of each track
143 
144  std::vector <TVector3> startvec;
145  TVector3 startXYZ;
146 
147  std::vector <TVector3> endvec;
148  TVector3 endXYZ;
149 
150  std::vector <TVector3> dircosvec;
151  TVector3 dircosXYZ;
152 
153  std::vector< std::pair<art::Ptr<recob::Track>, double> > trackpair;
154 
155  art::FindMany<recob::SpacePoint> TrackSpacePoints
156  (trackListHandle, evt, fTrackModuleLabel);
157 
158  for(unsigned int i = 0; i<trkIn.size(); ++i){
159  recob::Track::Point_t start, end;
160  std::tie(start, end) = trkIn[i].Extent();
161  startXYZ.SetXYZ(start.X(),start.Y(),start.Z());
162  endXYZ.SetXYZ(end.X(),end.Y(),end.Z());
163 
164 
165  double length = (endXYZ-startXYZ).Mag();// (endvec[i]-startvec[i]).Mag();
166  //mf::LogInfo("PrimaryVertexFinder") << "Track length calculated = " << length << std::endl;
167  trackpair.push_back(std::pair<art::Ptr<recob::Track>,double>({ trackListHandle, i },length));
168  }
169 
170  for(size_t i = 0; i<trackpair.size(); ++i){
171  mf::LogInfo("PrimaryVertexFinder") << "track id is = " << (trackpair[i].first)->ID()
172  << " track length = " << (trackpair[i].second);
173  }
174 
175  std::sort(trackpair.rbegin(), trackpair.rend(), sort_pred2);
176 
177  mf::LogInfo("PrimaryVertexFinder") << "AFTER SORTING ";
178  for(size_t i = 0; i < trackpair.size(); ++i){
179  mf::LogInfo("PrimaryVertexFinder") << "track id is = " << (trackpair[i].first)->ID()
180  << " track length = " << (trackpair[i].second);
181  }
182 
183  if(trackpair.size()>0)
184  fLength_1stTrack->Fill(trackpair[0].second);
185 
186  if(trackpair.size()>1)
187  fLength_2ndTrack->Fill(trackpair[1].second);
188 
189  if(trackpair.size()>2)
190  fLength_3rdTrack->Fill(trackpair[2].second);
191 
192  if(trackpair.size()>3)
193  fLength_4thTrack->Fill(trackpair[3].second);
194 
195  if(trackpair.size()>4)
196  fLength_5thTrack->Fill(trackpair[4].second);
197 
198  for(size_t j = 0; j < trackpair.size(); ++j) { //loop over tracks
199  art::Ptr<recob::Track> const& track = trackpair[j].first;
200 
201  // the index of this track in the query is the same as its position in
202  // the data product:
203  std::vector<recob::SpacePoint const*> const& spacepoints
204  = TrackSpacePoints.at(track.key());
205 
206  startXYZ = trackpair[j].first->Vertex<TVector3>();
207  endXYZ = trackpair[j].first->End<TVector3>();
208  dircosXYZ = trackpair[j].first->VertexDirection<TVector3>();
209 
210  startvec.push_back(startXYZ);
211  endvec.push_back(endXYZ);
212  dircosvec.push_back(dircosXYZ);
213 
214  mf::LogInfo("PrimaryVertexFinder") << "PrimaryVertexFinder got "<< spacepoints.size()
215  <<" 3D spacepoint(s) from Track3Dreco.cxx";
216 
217  // save the first SpacePoint of each Track... from now the SpacePoint ID represents the Track ID!!
218  startpoints_vec.emplace_back(
219  spacepoints[0]->XYZ(), spacepoints[0]->ErrXYZ(),
220  spacepoints[0]->Chisq(), startpoints_vec.size()
221  );
222 
223  }// loop over tracks
224 
225  for(size_t i = 0; i < startvec.size(); ++i){ //trackpair.size()
226  mf::LogInfo("PrimaryVertexFinder") << "Tvector3 start point SORTED = ";
227  startvec[i].Print();
228  }
229  for(size_t i = 0; i < dircosvec.size(); ++i){ //trackpair.size()
230  mf::LogInfo("PrimaryVertexFinder") << "Tvector3 dir cos SORTED = ";
231  dircosvec[i].Print();
232  }
233 
234  std::vector<std::vector<int> > vertex_collection_int;
235  std::vector <std::vector <TVector3> > vertexcand_vec;
236 
237  for (unsigned int i=0; i<trackpair.size(); ++i){
238  for (unsigned int j=i+1; j<trackpair.size(); ++j){
239  mf::LogInfo("PrimaryVertexFinder") << "distance between " << i << " and " << j
240  << " = "
241  << StartPointSeperation(startpoints_vec[i], startpoints_vec[j]);
242  double GAMMA = gammavalue(startvec[i], startvec[j], dircosvec[i], dircosvec[j]);
243  double ALPHA = alphavalue(GAMMA, startvec[i], startvec[j], dircosvec[i], dircosvec[j]);
244  double MINDIST = MinDist(ALPHA, GAMMA, startvec[i], startvec[j], dircosvec[i], dircosvec[j]);
245  mf::LogInfo("PrimaryVertexFinder") << "alpha = " << ALPHA << " gamma = "
246  << GAMMA << " MINIMUM DISTANCE = " << MINDIST;
247 
248  TVector3 TRACK1POINT = PointOnExtendedTrack(ALPHA, startvec[i], dircosvec[i]);
249  TVector3 TRACK2POINT = PointOnExtendedTrack(GAMMA, startvec[j], dircosvec[j]);
250 
251  mf::LogInfo("PrimaryVertexFinder") << "POINTS ON THE TRACKS ARE:: ";
252  TRACK1POINT.Print();
253  TRACK2POINT.Print();
254 
255  //if(StartPointSeperation(startpoints_vec[i], startpoints_vec[j])<fVertexWindow){ ///// correct this
256  //if(MINDIST<2 && trackpair[i].second >30 && trackpair[j].second >30){
257  if(MINDIST < fVertexWindow && ((TRACK1POINT-startvec[i]).Mag()) < fVertexWindow){
258 
259  if((!IsInVertexCollection(i, vertex_collection_int)) && (!IsInVertexCollection(j, vertex_collection_int))){
260  std::vector<int> newvertex_int;
261  std::vector <TVector3> vertexcand;
262  newvertex_int.push_back(i);
263  newvertex_int.push_back(j);
264  vertex_collection_int.push_back(newvertex_int);
265  //newvertex.clear();
266  vertexcand.push_back(TRACK1POINT);
267  vertexcand.push_back(TRACK2POINT);
268  vertexcand_vec.push_back(vertexcand);
269  }
270  else{
271  int index = IndexInVertexCollection(i, j, vertex_collection_int);
272  //mf::LogInfo("PrimaryVertexFinder") << "index where a new vertex will be added = " << index << std::endl;
273  if(!IsInNewVertex(i, vertex_collection_int[index])){
274  vertex_collection_int[index].push_back(i);
275  vertexcand_vec[index].push_back(TRACK1POINT); //need to fix for delta rays
276  }
277  if(!IsInNewVertex(j, vertex_collection_int[index])){
278  vertex_collection_int[index].push_back(j);
279  vertexcand_vec[index].push_back(TRACK2POINT); //need to fix for delta rays
280  }
281  }
282  }// end else
283  }
284  }
285 
286 
287  //now add the unmatched track IDs to the collection
288  for(size_t i = 0; i < trackpair.size(); ++i){
289  if(!IsInVertexCollection(i, vertex_collection_int)){
290  //if(trackpair[i].second>30){
291  std::vector<int> temp;
292  std::vector <TVector3> temp1;
293  temp.push_back(i);
294  temp1.push_back(startvec[i]);
295  vertex_collection_int.push_back(temp);
296  vertexcand_vec.push_back(temp1);
297  //}
298  }
299  }
300 
301  // indices (in their data products) of tracks and showers connected to the vertex
302  std::vector<size_t> vTrackIndices, vShowerIndices;
303 
304  // find the hits of all the tracks
305  art::FindManyP<recob::Hit> TrackHits(trackListHandle, evt, fTrackModuleLabel);
306 
307  // find the hits of all the showers
308  // art::FindManyP<recob::Hit> ShowerHits(showerListHandle, evt, fShowerModuleLabel);
309  ///\todo replace with the real query when this module is updated to look for showers too
310  art::FindManyP<recob::Hit> ShowerHits(std::vector<art::Ptr<recob::Shower>>(), evt, fTrackModuleLabel);
311 
312  for(size_t i = 0; i < vertex_collection_int.size(); ++i){
313  double x = 0.;
314  double y = 0.;
315  double z = 0.;
316  int elemsize = 0.;
317  for(std::vector<int>::iterator itr = vertex_collection_int[i].begin(); itr < vertex_collection_int[i].end(); ++itr){
318  mf::LogInfo("PrimaryVertexFinder") << "vector elements at index " << i << " are " << *itr
319  << "\ntrack original ID = " << (trackpair[*itr].first)->ID();
320  // save the index in the data product of this track
321  vTrackIndices.push_back(trackpair[*itr].first.key());
322  }
323  mf::LogInfo("PrimaryVertexFinder") << "------------";
324 
325 
326  for(std::vector<TVector3>::iterator itr = vertexcand_vec[i].begin(); itr < vertexcand_vec[i].end(); ++itr){
327  //calculate sum of x, y and z of a vertex
328  x += (*itr).X();
329  y += (*itr).Y();
330  z += (*itr).Z();
331  elemsize = vertexcand_vec[i].size();
332  }
333 
334  double avgx = x/elemsize;
335  double avgy = y/elemsize;
336  double avgz = z/elemsize;
337 
338  Double_t vtxcoord[3];
339  vtxcoord[0] = avgx;
340  vtxcoord[1] = avgy;
341  vtxcoord[2] = avgz;
342 
343  recob::Vertex the3Dvertex(vtxcoord, vcol->size());
344  vcol->push_back(the3Dvertex);
345 
346  if(!vTrackIndices.empty()){
347  // associate the tracks and their hits with the vertex
348  util::CreateAssn(*this, evt, *vtassn,
349  vcol->size() - 1, vTrackIndices.begin(), vTrackIndices.end());
350  for(size_t tIndex: vTrackIndices) {
351  std::vector<art::Ptr<recob::Hit>> const& hits = TrackHits.at(tIndex);
352  util::CreateAssn(*this, evt, *vcol, hits, *vhassn);
353  }
354  vTrackIndices.clear();
355  } // if tracks
356 
357  if(!vShowerIndices.empty()){
358  // associate the showers and their hits with the vertex
359  util::CreateAssn(*this, evt, *vsassn,
360  vcol->size() - 1, vShowerIndices.begin(), vShowerIndices.end());
361  for(size_t sIndex: vShowerIndices){
362  std::vector<art::Ptr<recob::Hit>> const& hits = ShowerHits.at(sIndex);
363  util::CreateAssn(*this, evt, *vcol, hits, *vhassn);
364  }
365  vShowerIndices.clear();
366  } // if showers
367 
368 
369  }// end loop over vertex_collection_ind
370 
371  MF_LOG_VERBATIM("Summary") << std::setfill('-') << std::setw(175) << "-" << std::setfill(' ');
372  MF_LOG_VERBATIM("Summary") << "PrimaryVertexFinder Summary:";
373  for(size_t i = 0; i < vcol->size(); ++i) MF_LOG_VERBATIM("Summary") << vcol->at(i) ;
374 
375  evt.put(std::move(vcol));
376  evt.put(std::move(vtassn));
377  evt.put(std::move(vhassn));
378  evt.put(std::move(vsassn));
379 
380  } // end of produce
381 } // end of vertex namespace
382 
383 // //-----------------------------------------------------------------------------
385 {
386  double x= (sp2.XYZ()[0])-(sp1.XYZ()[0]);
387  double y= (sp2.XYZ()[1])-(sp1.XYZ()[1]);
388  double z= (sp2.XYZ()[2])-(sp1.XYZ()[2]);
389  double distance = std::sqrt(pow(x,2)+pow(y,2)+pow(z,2));
390  return distance;
391 }
392 // //---------------------------------------------------------------------------------
393 bool vertex::PrimaryVertexFinder::IsInVertexCollection(int a, std::vector<std::vector<int> > vertex_collection)
394 {
395  int flag = 0;
396 
397  for(unsigned int i = 0; i < vertex_collection.size() ; i++){
398  for(std::vector<int>::iterator itr = vertex_collection[i].begin(); itr < vertex_collection[i].end(); ++itr){
399  if (a == *itr){
400  flag = 1;
401  break;
402  }
403  }
404  }
405  if(flag==1)
406  return true;
407  return false;
408 }
409 // //------------------------------------------------------------------------------
410 int vertex::PrimaryVertexFinder::IndexInVertexCollection(int a, int b, std::vector<std::vector<int> > vertex_collection)
411 {
412  int index = -1;
413  for(unsigned int i = 0; i < vertex_collection.size() ; i++){
414  for(std::vector<int>::iterator itr = vertex_collection[i].begin(); itr < vertex_collection[i].end(); ++itr){
415  if (a == *itr || b == *itr)
416  index = i;
417  }
418  }
419  return index;
420 }
421 // //------------------------------------------------------------------------------
422 bool vertex::PrimaryVertexFinder::IsInNewVertex(int a, std::vector<int> newvertex)
423 {
424  int flag = 0;
425  for(unsigned int i = 0; i < newvertex.size() ; i++){
426  if (a == newvertex[i]){
427  flag = 1;
428  break;
429  }
430  }
431 
432  if(flag==1)
433  return true;
434  return false;
435 }
436 // //------------------------------------------------------------------------------
437 double vertex::PrimaryVertexFinder::gammavalue(TVector3 startpoint1, TVector3 startpoint2, TVector3 dircos1, TVector3 dircos2)
438 {
439  double gamma = ((startpoint1*dircos2)-(startpoint2*dircos2)+((dircos1*dircos2)*(startpoint2*dircos1))-((dircos1*dircos2)*(startpoint1*dircos1)))/(1-((dircos1*dircos2)*(dircos1*dircos2)));
440 
441  return gamma;
442 }
443 // //------------------------------------------------------------------------------
444 double vertex::PrimaryVertexFinder::alphavalue(double gamma, TVector3 startpoint1, TVector3 startpoint2, TVector3 dircos1, TVector3 dircos2)
445 {
446  double alpha = (gamma*(dircos1*dircos2)) + (startpoint2*dircos1) - (startpoint1*dircos1);
447 
448  return alpha;
449 }
450 // //------------------------------------------------------------------------------
451 double vertex::PrimaryVertexFinder::MinDist(double alpha, double gamma, TVector3 startpoint1, TVector3 startpoint2, TVector3 dircos1, TVector3 dircos2)
452 {
453  TVector3 mindis_vector = startpoint1 - startpoint2 + alpha*dircos1 - gamma*dircos2;
454  double mindis = mindis_vector.Mag();
455  return mindis;
456 }
457 // //------------------------------------------------------------------------------
458 TVector3 vertex::PrimaryVertexFinder::PointOnExtendedTrack(double alphagamma, TVector3 startpoint, TVector3 dircos)
459 {
460  TVector3 PointOnExtendedTrack = startpoint + (alphagamma * dircos);
461  return PointOnExtendedTrack;
462 }
463 // //------------------------------------------------------------------------------
464 
465 
466 namespace vertex{
467 
469 
470 } // end of vertex namespace
end
while True: pbar.update(maxval-len(onlies[E][S])) #print iS, "/", len(onlies[E][S]) found = False for...
intermediate_table::iterator iterator
PrimaryVertexFinder(fhicl::ParameterSet const &pset)
TVector3 PointOnExtendedTrack(double alphagamma, TVector3 startpoint, TVector3 dircos)
std::string string
Definition: nybbler.cc:12
unsigned int ID
MaybeLogger_< ELseverityLevel::ELsev_info, false > LogInfo
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.h:20
constexpr T pow(T x)
Definition: pow.h:72
struct vector vector
Definition of vertex object for LArSoft.
Definition: Vertex.h:35
art framework interface to geometry description
bool IsInNewVertex(int a, std::vector< int > newvertex)
int IndexInVertexCollection(int a, int b, std::vector< std::vector< int > > vertex_collection)
bool getByLabel(std::string const &label, std::string const &instance, Handle< PROD > &result) const
Definition: DataViewImpl.h:633
#define DEFINE_ART_MODULE(klass)
Definition: ModuleMacros.h:67
const double a
def move(depos, offset)
Definition: depos.py:107
key_type key() const noexcept
Definition: Ptr.h:216
double alpha
Definition: doAna.cpp:15
ProductID put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
Definition: DataViewImpl.h:686
bool CreateAssn(PRODUCER const &prod, art::Event &evt, std::vector< T > const &a, art::Ptr< U > const &b, art::Assns< U, T > &assn, std::string a_instance, size_t indx=UINT_MAX)
Creates a single one-to-one association.
double distance(double x1, double y1, double z1, double x2, double y2, double z2)
double gamma(double KE, const simb::MCParticle *part)
double MinDist(double alpha, double gamma, TVector3 startpoint1, TVector3 startpoint2, TVector3 dircos1, TVector3 dircos2)
Q_EXPORT QTSManip setw(int w)
Definition: qtextstream.h:331
Declaration of signal hit object.
double StartPointSeperation(recob::SpacePoint sp1, recob::SpacePoint sp2)
bool sort_pred2(const std::pair< art::Ptr< recob::Track >, double > &left, const std::pair< art::Ptr< recob::Track >, double > &right)
#define MF_LOG_VERBATIM(category)
bool IsInVertexCollection(int a, std::vector< std::vector< int > > vertex_collection)
tracking::Point_t Point_t
Definition: Track.h:53
Provides recob::Track data product.
const Double32_t * XYZ() const
Definition: SpacePoint.h:76
static bool * b
Definition: config.cpp:1043
EventNumber_t event() const
Definition: EventID.h:116
double gammavalue(TVector3 startpoint1, TVector3 startpoint2, TVector3 dircos1, TVector3 dircos2)
list x
Definition: train.py:276
decltype(auto) constexpr begin(T &&obj)
ADL-aware version of std::begin.
Definition: StdUtils.h:72
double alphavalue(double gamma, TVector3 startpoint1, TVector3 startpoint2, TVector3 dircos1, TVector3 dircos2)
TCEvent evt
Definition: DataStructs.cxx:7
Q_EXPORT QTSManip setfill(int f)
Definition: qtextstream.h:337
EventID id() const
Definition: Event.cc:34
vertex reconstruction