CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ClusterCompatibility.cc
Go to the documentation of this file.
2 using namespace reco;
3 
5  nValidPixelHits_(0),
6  z0_(),
7  nHit_(),
8  chi_()
9 {}
10 
12 
13 void
14 ClusterCompatibility::append(float z0, int nHit, float chi) {
15  z0_.push_back(z0);
16  nHit_.push_back(nHit);
17  chi_.push_back(chi);
18 }
void append(float, int, float)