@@ -1292,7 +1292,7 @@ class TrackingNtuple : public edm::one::EDAnalyzer<edm::one::SharedResources> {
12921292 ph2_radL; // http://cmslxr.fnal.gov/lxr/source/DataFormats/GeometrySurface/interface/MediumProperties.h
12931293 std::vector<float > ph2_bbxi;
12941294 std::vector<uint64_t > ph2_usedMask;
1295- std::vector<size_t > ph2_size ;
1295+ std::vector<size_t > ph2_clustSize ;
12961296
12971297 // //////////////////
12981298 // invalid (missing/inactive/etc) hits
@@ -1883,7 +1883,7 @@ TrackingNtuple::TrackingNtuple(const edm::ParameterSet& iConfig)
18831883 t->Branch (" ph2_radL" , &ph2_radL);
18841884 t->Branch (" ph2_bbxi" , &ph2_bbxi);
18851885 t->Branch (" ph2_usedMask" , &ph2_usedMask);
1886- t->Branch (" ph2_size " , &ph2_size );
1886+ t->Branch (" ph2_clustSize " , &ph2_clustSize );
18871887 }
18881888 // invalid hits
18891889 t->Branch (" inv_isBarrel" , &inv_isBarrel);
@@ -2311,7 +2311,7 @@ void TrackingNtuple::clearVariables() {
23112311 ph2_radL.clear ();
23122312 ph2_bbxi.clear ();
23132313 ph2_usedMask.clear ();
2314- ph2_size .clear ();
2314+ ph2_clustSize .clear ();
23152315 // invalid hits
23162316 inv_isBarrel.clear ();
23172317 inv_detId.clear ();
@@ -3379,7 +3379,7 @@ void TrackingNtuple::fillPhase2OTHits(const edm::Event& iEvent,
33793379 ph2_radL.push_back (hit->surface ()->mediumProperties ().radLen ());
33803380 ph2_bbxi.push_back (hit->surface ()->mediumProperties ().xi ());
33813381 ph2_usedMask.push_back (ph2OTUsedMask (hit->firstClusterRef ().key ()));
3382- ph2_size .push_back (hit->cluster ()->size ());
3382+ ph2_clustSize .push_back (hit->cluster ()->size ());
33833383
33843384 LogTrace (" TrackingNtuple" ) << " phase2 OT cluster=" << key << " subdId=" << hitId.subdetId () << " lay=" << lay
33853385 << " rawId=" << hitId.rawId () << " pos =" << hit->globalPosition ();
0 commit comments