CMS 3D CMS Logo

GapClusterizerInZ.cc
Go to the documentation of this file.
4 
5 using namespace std;
6 
7 namespace {
8 
9  bool recTrackLessZ(const reco::TransientTrack& tk1, const reco::TransientTrack& tk2) {
10  return tk1.stateAtBeamLine().trackStateAtPCA().position().z() <
12  }
13 
14 } // namespace
15 
17  // some defaults to avoid uninitialized variables
18  verbose_ = conf.getUntrackedParameter<bool>("verbose", false);
19  zSep = conf.getParameter<double>("zSeparation");
20  if (verbose_) {
21  std::cout << "TrackClusterizerInZ: algorithm=gap, zSeparation=" << zSep << std::endl;
22  }
23 }
24 
25 float GapClusterizerInZ::zSeparation() const { return zSep; }
26 
27 vector<vector<reco::TransientTrack> > GapClusterizerInZ::clusterize(const vector<reco::TransientTrack>& tracks) const {
28  vector<reco::TransientTrack> tks = tracks; // copy to be sorted
29 
30  vector<vector<reco::TransientTrack> > clusters;
31  if (tks.empty())
32  return clusters;
33 
34  // sort in increasing order of z
35  stable_sort(tks.begin(), tks.end(), recTrackLessZ);
36 
37  // init first cluster
38  vector<reco::TransientTrack>::const_iterator it = tks.begin();
39  vector<reco::TransientTrack> currentCluster;
40  currentCluster.push_back(*it);
41 
42  it++;
43  for (; it != tks.end(); it++) {
44  double zPrev = currentCluster.back().stateAtBeamLine().trackStateAtPCA().position().z();
45  double zCurr = (*it).stateAtBeamLine().trackStateAtPCA().position().z();
46 
47  if (abs(zCurr - zPrev) < zSeparation()) {
48  // close enough ? cluster together
49  currentCluster.push_back(*it);
50  } else {
51  // store current cluster, start new one
52  clusters.push_back(currentCluster);
53  currentCluster.clear();
54  currentCluster.push_back(*it);
55  }
56  }
57 
58  // store last cluster
59  clusters.push_back(currentCluster);
60 
61  return clusters;
62 }
63 
65  desc.add<double>("zSeparation", 1.0);
66  desc.addUntracked<bool>("verbose", false);
67 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
T z() const
Definition: PV3DBase.h:61
GapClusterizerInZ(const edm::ParameterSet &conf)
TrajectoryStateClosestToBeamLine stateAtBeamLine() const
T getUntrackedParameter(std::string const &, T const &) const
GlobalPoint position() const
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
float zSeparation() const
static void fillPSetDescription(edm::ParameterSetDescription &desc)
std::vector< std::vector< reco::TransientTrack > > clusterize(const std::vector< reco::TransientTrack > &tracks) const override