CMS 3D CMS Logo

PixelClusterShapeExtractor.cc
Go to the documentation of this file.
1 // VI January 2012: needs to be migrated to use cluster directly
2 
10 
13 
16 
19 
22 
25 #
26 
27 #include "TROOT.h"
28 #include "TFile.h"
29 #include "TH1F.h"
30 #include "TH2F.h"
31 
32 #include <map>
33 #include <vector>
34 #include <fstream>
35 
36 #include <mutex>
37 
38 using namespace std;
39 
40 // pixel
41 #define exMax 10
42 #define eyMax 15
43 
44 namespace {
45 
46  const std::set<unsigned> RelevantProcesses = {0};
47  //const std::set<unsigned> RelevantProcesses = { 2, 7, 9, 11, 13, 15 };
48 
49 } // namespace
50 
51 /*****************************************************************************/
53 public:
55  void analyze(edm::StreamID, const edm::Event& evt, const edm::EventSetup&) const override;
56  void endJob() override;
57 
58 private:
59  void init();
60 
61  bool isSuitable(const PSimHit& simHit, const GeomDetUnit& gdu) const;
62 
63  // Sim
64  void processSim(const SiPixelRecHit& recHit,
65  ClusterShapeHitFilter const& theClusterFilter,
66  const PSimHit& simHit,
68  const vector<TH2F*>& histo) const;
69 
70  // Rec
71  void processRec(const SiPixelRecHit& recHit,
72  ClusterShapeHitFilter const& theFilter,
73  LocalVector ldir,
75  const vector<TH2F*>& histo) const;
76 
77  bool checkSimHits(const TrackingRecHit& recHit,
78  TrackerHitAssociator const& theAssociator,
79  PSimHit& simHit,
80  pair<unsigned int, float>& key,
81  unsigned int& ss) const;
82 
83  void processPixelRecHits(SiPixelRecHitCollection::DataContainer const& recHits,
84  TrackerHitAssociator const& theAssociator,
85  ClusterShapeHitFilter const& theFilter,
87  const TrackerTopology& tkTpl) const;
88 
89  void analyzeSimHits(const edm::Event& ev, const edm::EventSetup& es) const;
90  void analyzeRecTracks(const edm::Event& ev, const edm::EventSetup& es) const;
91 
92  TFile* file;
93 
94  const bool hasSimHits;
95  const bool hasRecTracks;
96  const bool noBPIX1;
97 
102 
103  using Lock = std::unique_lock<std::mutex>;
104  std::unique_ptr<std::mutex[]> theMutex;
105  std::vector<TH2F*> hspc; // simulated pixel cluster
106  std::vector<TH2F*> hrpc; // reconstructed pixel cluster
107 };
108 
109 /*****************************************************************************/
111  // Declare histograms
112  char histName[256];
113 
114  // pixel
115  for (int subdet = 0; subdet <= 1; subdet++) {
116  for (int ex = 0; ex <= exMax; ex++)
117  for (int ey = 0; ey <= eyMax; ey++) {
118  sprintf(histName, "hspc_%d_%d_%d", subdet, ex, ey);
119  hspc.push_back(new TH2F(histName,
120  histName,
121  10 * 2 * (exMax + 2),
122  -(exMax + 2),
123  (exMax + 2),
124  10 * 2 * (eyMax + 2),
125  -(eyMax + 2),
126  (eyMax + 2)));
127 
128  sprintf(histName, "hrpc_%d_%d_%d", subdet, ex, ey);
129  hrpc.push_back(new TH2F(histName,
130  histName,
131  10 * 2 * (exMax + 2),
132  -(exMax + 2),
133  (exMax + 2),
134  10 * 2 * (eyMax + 2),
135  -(eyMax + 2),
136  (eyMax + 2)));
137  }
138  }
139  theMutex.reset(new std::mutex[hspc.size()]);
140 }
141 
142 /*****************************************************************************/
144  : hasSimHits(pset.getParameter<bool>("hasSimHits")),
145  hasRecTracks(pset.getParameter<bool>("hasRecTracks")),
146  noBPIX1(pset.getParameter<bool>("noBPIX1")),
147  tracks_token(hasRecTracks ? consumes<reco::TrackCollection>(pset.getParameter<edm::InputTag>("tracks"))
148  : edm::EDGetTokenT<reco::TrackCollection>()),
149  pixelRecHits_token(consumes<edmNew::DetSetVector<SiPixelRecHit>>(edm::InputTag("siPixelRecHits"))),
150  clusterShapeCache_token(
151  consumes<SiPixelClusterShapeCache>(pset.getParameter<edm::InputTag>("clusterShapeCacheSrc"))),
152  trackerHitAssociatorConfig_(pset, consumesCollector()) {
153  file = new TFile("clusterShape.root", "RECREATE");
154  file->cd();
155  init();
156 }
157 
158 /*****************************************************************************/
160  file->cd();
161 
162  // simulated
163  for (auto h = hspc.begin(); h != hspc.end(); h++)
164  (*h)->Write();
165 
166  // reconstructed
167  for (auto h = hrpc.begin(); h != hrpc.end(); h++)
168  (*h)->Write();
169 
170  file->Close();
171 }
172 
173 /*****************************************************************************/
175  // Outgoing?
176  // very expensive....
177  GlobalVector gvec = gdu.position() - GlobalPoint(0, 0, 0);
178  LocalVector lvec = gdu.toLocal(gvec);
179  LocalVector ldir = simHit.exitPoint() - simHit.entryPoint();
180 
181  // cut on size as well (pixel is 285um thick...
182  bool isOutgoing = std::abs(ldir.z()) > 0.01f && (lvec.z() * ldir.z() > 0);
183 
185  const bool isRelevant = RelevantProcesses.count(simHit.processType());
186  // From a relevant process? primary or decay
187  //bool isRelevant = (simHit.processType() == 2 ||
188  // simHit.processType() == 4);
189 
190  constexpr float ptCut2 = 0.2 * 0.2; // 0.050*0.050;
191  // Fast enough? pt > 50 MeV/c FIXME (at least 200MeV....
192  bool isFast = (simHit.momentumAtEntry().perp2() > ptCut2);
193 
194  //std::cout << "isOutgoing = " << isOutgoing << ", isRelevant = " << simHit.processType() << ", isFast = " << isFast << std::endl;
195  return (isOutgoing && isRelevant && isFast);
196 }
197 
198 /*****************************************************************************/
200  ClusterShapeHitFilter const& theClusterShape,
201  LocalVector ldir,
203  const vector<TH2F*>& histo) const {
204  int part;
206  pair<float, float> pred;
207 
208  if (theClusterShape.getSizes(recHit, ldir, clusterShapeCache, part, meas, pred))
209  if (meas.size() == 1)
210  if (meas.front().first <= exMax && meas.front().second <= eyMax) {
211  int i = (part * (exMax + 1) + meas.front().first) * (eyMax + 1) + meas.front().second;
212 #ifdef DO_DEBUG
213  if (meas.front().second == 0 && std::abs(pred.second) > 3) {
214  Lock lock(theMutex[0]);
215  int id = recHit.geographicalId();
216  std::cout << id << " bigpred " << meas.front().first << '/' << meas.front().second << ' ' << pred.first << '/'
217  << pred.second << ' ' << ldir << ' ' << ldir.mag() << std::endl;
218  }
219 #endif
220  Lock lock(theMutex[i]);
221  histo[i]->Fill(pred.first, pred.second);
222  }
223 }
224 
225 /*****************************************************************************/
227  ClusterShapeHitFilter const& theClusterFilter,
228  const PSimHit& simHit,
230  const vector<TH2F*>& histo) const {
231  LocalVector ldir = simHit.exitPoint() - simHit.entryPoint();
232  processRec(recHit, theClusterFilter, ldir, clusterShapeCache, histo);
233 }
234 
235 /*****************************************************************************/
237  TrackerHitAssociator const& theHitAssociator,
238  PSimHit& simHit,
239  pair<unsigned int, float>& key,
240  unsigned int& ss) const {
241  auto const& simHits = theHitAssociator.associateHit(recHit);
242 
243  //std::cout << "simHits.size() = " << simHits.size() << std::endl;
244  for (auto const& sh : simHits) {
245  if (isSuitable(sh, *recHit.detUnit())) {
246  simHit = sh;
247  key = {simHit.trackId(), simHit.timeOfFlight()};
248  ss = simHits.size();
249  return true;
250  }
251  }
252 
253  return false;
254 }
255 
256 /*****************************************************************************/
258  TrackerHitAssociator const& theHitAssociator,
259  ClusterShapeHitFilter const& theFilter,
261  const TrackerTopology& tkTpl) const {
262  struct Elem {
263  const SiPixelRecHit* rhit;
264  PSimHit shit;
265  unsigned int size;
266  };
267  std::map<pair<unsigned int, float>, Elem> simHitMap;
268 
269  PSimHit simHit;
270  pair<unsigned int, float> key;
271  unsigned int ss;
272 
273  for (auto const& recHit : recHits) {
274  if (noBPIX1 && tkTpl.pxbLayer(recHit.geographicalId()) == 1)
275  continue;
276  if (!checkSimHits(recHit, theHitAssociator, simHit, key, ss))
277  continue;
278  // Fill map
279  if (simHitMap.count(key) == 0) {
280  simHitMap[key] = {&recHit, simHit, ss};
281  } else if (recHit.cluster()->size() > simHitMap[key].rhit->cluster()->size())
282  simHitMap[key] = {&recHit, simHit, std::max(ss, simHitMap[key].size)};
283  }
284  for (auto const& elem : simHitMap) {
285  /* irrelevant
286  auto const rh = *elem.second.rhit;
287  auto const& topol = reinterpret_cast<const PixelGeomDetUnit*>(rh.detUnit())->specificTopology();
288  auto const & cl = *rh.cluster();
289  if (cl.minPixelCol()==0) continue;
290  if (cl.maxPixelCol()+1==topol.ncolumns()) continue;
291  if (cl.minPixelRow()==0) continue;
292  if (cl.maxPixelRow()+1==topol.nrows()) continue;
293  */
294  if (elem.second.size == 1)
295  processSim(*elem.second.rhit, theFilter, elem.second.shit, clusterShapeCache, hspc);
296  }
297 }
298 
299 /*****************************************************************************/
302  es.get<CkfComponentsRecord>().get("ClusterShapeHitFilter", shape);
303  auto const& theClusterShape = *shape.product();
304 
305  edm::ESHandle<TrackerTopology> tTopoHandle;
306  es.get<TrackerTopologyRcd>().get(tTopoHandle);
307  auto const& tkTpl = *tTopoHandle;
308 
311 
312  // Get associator
313  auto theHitAssociator = std::make_unique<TrackerHitAssociator>(ev, trackerHitAssociatorConfig_);
314 
315  // Pixel hits
316  {
318  ev.getByToken(pixelRecHits_token, coll);
319 
322 
323  auto const& recHits = coll.product()->data();
324  processPixelRecHits(recHits, *theHitAssociator, theClusterShape, *clusterShapeCache, tkTpl);
325  }
326 }
327 
328 /*****************************************************************************/
331  es.get<CkfComponentsRecord>().get("ClusterShapeHitFilter", shape);
332  auto const& theClusterShape = *shape.product();
333 
334  edm::ESHandle<TrackerTopology> tTopoHandle;
335  es.get<TrackerTopologyRcd>().get(tTopoHandle);
336  auto const& tkTpl = *tTopoHandle;
337 
338  // Get tracks
340  ev.getByToken(tracks_token, tracks);
341 
344 
345  for (auto const& track : *tracks) {
346  if (!track.quality(reco::Track::highPurity))
347  continue;
348  if (track.numberOfValidHits() < 8)
349  continue;
350  auto const& trajParams = track.extra()->trajParams();
351  assert(trajParams.size() == track.recHitsSize());
352  auto hb = track.recHitsBegin();
353  for (unsigned int h = 0; h < track.recHitsSize(); h++) {
354  auto recHit = *(hb + h);
355  if (!recHit->isValid())
356  continue;
357  auto id = recHit->geographicalId();
358  if (noBPIX1 && tkTpl.pxbLayer(id) == 1)
359  continue;
360 
361  // check that we are in the pixel
362  auto subdetid = (id.subdetId());
363  bool isPixel = subdetid == PixelSubdetector::PixelBarrel || subdetid == PixelSubdetector::PixelEndcap;
364 
365  auto const& ltp = trajParams[h];
366  auto ldir = ltp.momentum() / ltp.momentum().mag();
367 
368  if (isPixel) {
369  // Pixel
370  const SiPixelRecHit* pixelRecHit = dynamic_cast<const SiPixelRecHit*>(recHit);
371 
372  if (pixelRecHit != nullptr)
373  processRec(*pixelRecHit, theClusterShape, ldir, *clusterShapeCache, hrpc);
374  }
375  }
376  }
377 }
378 
379 /*****************************************************************************/
381  if (hasSimHits) {
382  LogTrace("MinBiasTracking") << " [ClusterShape] analyze simHits, recHits";
383  analyzeSimHits(ev, es);
384  }
385 
386  if (hasRecTracks) {
387  LogTrace("MinBiasTracking") << " [ClusterShape] analyze recHits on recTracks";
388  analyzeRecTracks(ev, es);
389  }
390 }
391 
SiPixelPhase1OnlineDQM_cff.clusterShapeCache
clusterShapeCache
Definition: SiPixelPhase1OnlineDQM_cff.py:120
Vector3DBase< float, LocalTag >
PixelClusterShapeExtractor::hasRecTracks
const bool hasRecTracks
Definition: PixelClusterShapeExtractor.cc:95
GeomDet::position
const Surface::PositionType & position() const
The position (origin of the R.F.)
Definition: GeomDet.h:43
PixelClusterShapeExtractor::init
void init()
Definition: PixelClusterShapeExtractor.cc:110
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
edm::StreamID
Definition: StreamID.h:30
ClusterShapeHitFilter.h
Handle.h
PDWG_EXOHSCP_cff.tracks
tracks
Definition: PDWG_EXOHSCP_cff.py:28
init
int init
Definition: HydjetWrapper.h:64
electrons_cff.bool
bool
Definition: electrons_cff.py:372
PixelClusterShapeExtractor::checkSimHits
bool checkSimHits(const TrackingRecHit &recHit, TrackerHitAssociator const &theAssociator, PSimHit &simHit, pair< unsigned int, float > &key, unsigned int &ss) const
Definition: PixelClusterShapeExtractor.cc:236
mps_fire.i
i
Definition: mps_fire.py:355
SiPixelClusterShapeCache
Definition: SiPixelClusterShapeCache.h:43
PixelSubdetector::PixelEndcap
Definition: PixelSubdetector.h:11
GeomDet
Definition: GeomDet.h:27
PixelSubdetector::PixelBarrel
Definition: PixelSubdetector.h:11
edm::Handle::product
T const * product() const
Definition: Handle.h:70
PixelTopology.h
ESHandle.h
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
edm::EDGetTokenT< reco::TrackCollection >
PixelClusterShapeExtractor::PixelClusterShapeExtractor
PixelClusterShapeExtractor(const edm::ParameterSet &pset)
Definition: PixelClusterShapeExtractor.cc:143
edm
HLT enums.
Definition: AlignableModifier.h:19
TrackerTopology
Definition: TrackerTopology.h:16
h
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
Definition: L1TUtmAlgorithmRcd.h:4
gather_cfg.cout
cout
Definition: gather_cfg.py:144
PixelClusterShapeExtractor::theMutex
std::unique_ptr< std::mutex[]> theMutex
Definition: PixelClusterShapeExtractor.cc:104
TrackerHitAssociator::associateHit
std::vector< PSimHit > associateHit(const TrackingRecHit &thit) const
Definition: TrackerHitAssociator.cc:212
timingPdfMaker.histo
histo
Definition: timingPdfMaker.py:279
ClusterShapeHitFilter
Definition: ClusterShapeHitFilter.h:149
cms::cuda::assert
assert(be >=bs)
FastTrackerRecHitCombiner_cfi.simHits
simHits
Definition: FastTrackerRecHitCombiner_cfi.py:5
ClusterShapeExtractor_cfi.noBPIX1
noBPIX1
Definition: ClusterShapeExtractor_cfi.py:9
TrackerHitAssociator.h
PixelClusterShapeExtractor::clusterShapeCache_token
const edm::EDGetTokenT< SiPixelClusterShapeCache > clusterShapeCache_token
Definition: PixelClusterShapeExtractor.cc:100
CkfComponentsRecord.h
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
TrackerHitAssociator::Config
Definition: TrackerHitAssociator.h:57
edm::Handle< SiPixelClusterShapeCache >
rpcPointValidation_cfi.recHit
recHit
Definition: rpcPointValidation_cfi.py:7
PixelClusterShapeExtractor::noBPIX1
const bool noBPIX1
Definition: PixelClusterShapeExtractor.cc:96
SiPixelRecHit
Our base class.
Definition: SiPixelRecHit.h:23
edmNew
Definition: DetSet2RangeMap.h:11
TrackerTopology::pxbLayer
unsigned int pxbLayer(const DetId &id) const
Definition: TrackerTopology.h:144
PV3DBase::z
T z() const
Definition: PV3DBase.h:61
PixelClusterShapeExtractor::analyzeSimHits
void analyzeSimHits(const edm::Event &ev, const edm::EventSetup &es) const
Definition: PixelClusterShapeExtractor.cc:300
contentValuesCheck.ss
ss
Definition: contentValuesCheck.py:33
PixelClusterShapeExtractor::hspc
std::vector< TH2F * > hspc
Definition: PixelClusterShapeExtractor.cc:105
part
part
Definition: HCALResponse.h:20
PixelClusterShapeExtractor::analyzeRecTracks
void analyzeRecTracks(const edm::Event &ev, const edm::EventSetup &es) const
Definition: PixelClusterShapeExtractor.cc:329
PSimHit.h
h
Track.h
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
TrackFwd.h
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
CkfComponentsRecord
Definition: CkfComponentsRecord.h:22
ClusterShapeExtractor_cfi.hasRecTracks
hasRecTracks
Definition: ClusterShapeExtractor_cfi.py:8
PixelClusterShapeExtractor::processRec
void processRec(const SiPixelRecHit &recHit, ClusterShapeHitFilter const &theFilter, LocalVector ldir, const SiPixelClusterShapeCache &clusterShapeCache, const vector< TH2F * > &histo) const
Definition: PixelClusterShapeExtractor.cc:199
rpcPointValidation_cfi.simHit
simHit
Definition: rpcPointValidation_cfi.py:24
edm::ESHandle< ClusterShapeHitFilter >
PixelClusterShapeExtractor::processPixelRecHits
void processPixelRecHits(SiPixelRecHitCollection::DataContainer const &recHits, TrackerHitAssociator const &theAssociator, ClusterShapeHitFilter const &theFilter, SiPixelClusterShapeCache const &clusterShapeCache, const TrackerTopology &tkTpl) const
Definition: PixelClusterShapeExtractor.cc:257
edm::VecArray::front
reference front()
Definition: VecArray.h:50
GlobalPoint
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
mutex
static boost::mutex mutex
Definition: Proxy.cc:9
GeomDet::toLocal
LocalPoint toLocal(const GlobalPoint &gp) const
Conversion to the R.F. of the GeomDet.
Definition: GeomDet.h:58
EDGetToken.h
eyMax
#define eyMax
Definition: PixelClusterShapeExtractor.cc:42
FastTrackerRecHitMaskProducer_cfi.recHits
recHits
Definition: FastTrackerRecHitMaskProducer_cfi.py:8
SiPixelRecHitCollection.h
edm::VecArray< std::pair< int, int >, 9 >
HLT_2018_cff.InputTag
InputTag
Definition: HLT_2018_cff.py:79016
PixelClusterShapeExtractor
Definition: PixelClusterShapeExtractor.cc:52
edm::ParameterSet
Definition: ParameterSet.h:36
Event.h
fastTrackerRecHitType::isPixel
bool isPixel(HitType hitType)
Definition: FastTrackerRecHit.h:37
CommonMethods.lock
def lock()
Definition: CommonMethods.py:82
SiStripPI::max
Definition: SiStripPayloadInspectorHelper.h:169
ClusterShapeHitFilter::getSizes
bool getSizes(const SiPixelRecHit &recHit, const LocalVector &ldir, const SiPixelClusterShapeCache &clusterShapeCache, int &part, ClusterData::ArrayType &meas, std::pair< float, float > &predr, PixelData const *pd=nullptr) const
Definition: ClusterShapeHitFilter.cc:231
PixelClusterShapeExtractor::endJob
void endJob() override
Definition: PixelClusterShapeExtractor.cc:159
PixelClusterShapeExtractor::processSim
void processSim(const SiPixelRecHit &recHit, ClusterShapeHitFilter const &theClusterFilter, const PSimHit &simHit, const SiPixelClusterShapeCache &clusterShapeCache, const vector< TH2F * > &histo) const
Definition: PixelClusterShapeExtractor.cc:226
PixelClusterShapeExtractor::Lock
std::unique_lock< std::mutex > Lock
Definition: PixelClusterShapeExtractor.cc:103
analyze
example_stream void analyze(const edm::Event &, const edm::EventSetup &) override
edm::EventSetup
Definition: EventSetup.h:57
edmNew::DetSetVector::DataContainer
std::vector< data_type > DataContainer
Definition: DetSetVectorNew.h:204
PixelClusterShapeExtractor::trackerHitAssociatorConfig_
const TrackerHitAssociator::Config trackerHitAssociatorConfig_
Definition: PixelClusterShapeExtractor.cc:101
get
#define get
hcalSimParameters_cfi.hb
hb
Definition: hcalSimParameters_cfi.py:57
PixelClusterShapeExtractor::file
TFile * file
Definition: PixelClusterShapeExtractor.cc:92
TrackingRecHit
Definition: TrackingRecHit.h:21
PV3DBase::mag
T mag() const
Definition: PV3DBase.h:64
TrackerHitAssociator
Definition: TrackerHitAssociator.h:55
std
Definition: JetResolutionObject.h:76
edmNew::DetSetVector::data
data_type const * data(size_t cell) const
Definition: DetSetVectorNew.h:602
PixelClusterShapeExtractor::pixelRecHits_token
const edm::EDGetTokenT< edmNew::DetSetVector< SiPixelRecHit > > pixelRecHits_token
Definition: PixelClusterShapeExtractor.cc:99
ev
bool ev
Definition: Hydjet2Hadronizer.cc:95
ClusterShapeExtractor_cfi.hasSimHits
hasSimHits
Definition: ClusterShapeExtractor_cfi.py:7
PixelGeomDetUnit.h
PixelClusterShapeExtractor::analyze
void analyze(edm::StreamID, const edm::Event &evt, const edm::EventSetup &) const override
Definition: PixelClusterShapeExtractor.cc:380
EventSetup.h
edm::VecArray::size
constexpr size_type size() const noexcept
Definition: VecArray.h:70
PixelClusterShapeExtractor::hasSimHits
const bool hasSimHits
Definition: PixelClusterShapeExtractor.cc:94
exMax
#define exMax
Definition: PixelClusterShapeExtractor.cc:41
HLT_2018_cff.track
track
Definition: HLT_2018_cff.py:10352
PixelClusterShapeExtractor::isSuitable
bool isSuitable(const PSimHit &simHit, const GeomDetUnit &gdu) const
Definition: PixelClusterShapeExtractor.cc:174
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
LogTrace
#define LogTrace(id)
Definition: MessageLogger.h:671
TrackerTopologyRcd
Definition: TrackerTopologyRcd.h:10
ParameterSet.h
PSimHit
Definition: PSimHit.h:15
edm::Event
Definition: Event.h:73
PixelClusterShapeExtractor::tracks_token
const edm::EDGetTokenT< reco::TrackCollection > tracks_token
Definition: PixelClusterShapeExtractor.cc:98
crabWrapper.key
key
Definition: crabWrapper.py:19
EDAnalyzer.h
reco::TrackCollection
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
PixelClusterShapeExtractor::hrpc
std::vector< TH2F * > hrpc
Definition: PixelClusterShapeExtractor.cc:106
edm::global::EDAnalyzer
Definition: EDAnalyzer.h:32
SiPixelClusterShapeCache.h
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27
trackerHitRTTI::isFast
bool isFast(TrackingRecHit const &hit)
Definition: trackerHitRTTI.h:36
findQualityFiles.size
size
Write out results.
Definition: findQualityFiles.py:443
reco::TrackBase::highPurity
Definition: TrackBase.h:154