|
||||
File indexing completed on 2024-04-06 12:04:20
0001 #include "DataFormats/HeavyIonEvent/interface/ClusterCompatibility.h" 0002 using namespace reco; 0003 0004 ClusterCompatibility::ClusterCompatibility() : nValidPixelHits_(0), z0_(), nHit_(), chi_() {} 0005 0006 ClusterCompatibility::~ClusterCompatibility() {} 0007 0008 void ClusterCompatibility::append(float z0, int nHit, float chi) { 0009 z0_.push_back(z0); 0010 nHit_.push_back(nHit); 0011 chi_.push_back(chi); 0012 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |