CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
SiPixelRawToClusterCUDA Class Reference
Inheritance diagram for SiPixelRawToClusterCUDA:
edm::stream::EDProducer< edm::ExternalWork >

Public Member Functions

 SiPixelRawToClusterCUDA (const edm::ParameterSet &iConfig)
 
 ~SiPixelRawToClusterCUDA () override=default
 
- Public Member Functions inherited from edm::stream::EDProducer< edm::ExternalWork >
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Member Functions

void acquire (const edm::Event &iEvent, const edm::EventSetup &iSetup, edm::WaitingTaskWithArenaHolder waitingTaskHolder) override
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup) override
 

Private Attributes

std::unique_ptr
< SiPixelFedCablingTree
cabling_
 
const SiPixelFedCablingMapcablingMap_ = nullptr
 
edm::ESGetToken
< SiPixelFedCablingMap,
SiPixelFedCablingMapRcd
cablingMapToken_
 
edm::EDPutTokenT
< cms::cuda::Product
< SiPixelClustersCUDA > > 
clusterPutToken_
 
const SiPixelClusterThresholds clusterThresholds_
 
cms::cuda::ContextState ctxState_
 
edm::EDPutTokenT
< cms::cuda::Product
< SiPixelDigiErrorsCUDA > > 
digiErrorPutToken_
 
edm::EDPutTokenT
< cms::cuda::Product
< SiPixelDigisCUDA > > 
digiPutToken_
 
PixelDataFormatter::Errors errors_
 
std::vector< unsigned int > fedIds_
 
edm::ESGetToken
< SiPixelGainCalibrationForHLTGPU,
SiPixelGainCalibrationForHLTGPURcd
gainsToken_
 
pixelgpudetails::SiPixelRawToClusterGPUKernel gpuAlgo_
 
edm::ESGetToken
< SiPixelROCsStatusAndMappingWrapper,
CkfComponentsRecord
gpuMapToken_
 
const bool includeErrors_
 
const bool isRun2_
 
const uint32_t maxFedWords_
 
edm::EDGetTokenT
< FEDRawDataCollection
rawGetToken_
 
edm::ESWatcher
< SiPixelFedCablingMapRcd
recordWatcher_
 
std::unique_ptr
< PixelUnpackingRegions
regions_
 
const bool useQuality_
 
std::unique_ptr
< pixelgpudetails::SiPixelRawToClusterGPUKernel::WordFedAppender
wordFedAppender_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer< edm::ExternalWork >
using CacheTypes = CacheContexts< T...>
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T...>
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

Definition at line 43 of file SiPixelRawToClusterCUDA.cc.

Constructor & Destructor Documentation

SiPixelRawToClusterCUDA::SiPixelRawToClusterCUDA ( const edm::ParameterSet iConfig)
explicit

Definition at line 85 of file SiPixelRawToClusterCUDA.cc.

References edm::ParameterSet::getParameter().

86  : rawGetToken_(consumes<FEDRawDataCollection>(iConfig.getParameter<edm::InputTag>("InputLabel"))),
89  gpuMapToken_(esConsumes<SiPixelROCsStatusAndMappingWrapper, CkfComponentsRecord>()),
90  gainsToken_(esConsumes<SiPixelGainCalibrationForHLTGPU, SiPixelGainCalibrationForHLTGPURcd>()),
91  cablingMapToken_(esConsumes<SiPixelFedCablingMap, SiPixelFedCablingMapRcd>(
92  edm::ESInputTag("", iConfig.getParameter<std::string>("CablingMapLabel")))),
93  isRun2_(iConfig.getParameter<bool>("isRun2")),
94  includeErrors_(iConfig.getParameter<bool>("IncludeErrors")),
95  useQuality_(iConfig.getParameter<bool>("UseQualityInfo")),
96  maxFedWords_(iConfig.getParameter<uint32_t>("MaxFEDWords")),
97  clusterThresholds_{iConfig.getParameter<int32_t>("clusterThreshold_layer1"),
98  iConfig.getParameter<int32_t>("clusterThreshold_otherLayers")} {
99  if (includeErrors_) {
100  digiErrorPutToken_ = produces<cms::cuda::Product<SiPixelDigiErrorsCUDA>>();
101  }
102 
103  // regions
104  if (!iConfig.getParameter<edm::ParameterSet>("Regions").getParameterNames().empty()) {
105  regions_ = std::make_unique<PixelUnpackingRegions>(iConfig, consumesCollector());
106  }
107 
109  if (cs->enabled()) {
110  wordFedAppender_ = std::make_unique<pixelgpudetails::SiPixelRawToClusterGPUKernel::WordFedAppender>(maxFedWords_);
111  }
112 }
edm::EDPutTokenT< cms::cuda::Product< SiPixelDigiErrorsCUDA > > digiErrorPutToken_
unique_ptr< ClusterSequence > cs
edm::ESGetToken< SiPixelGainCalibrationForHLTGPU, SiPixelGainCalibrationForHLTGPURcd > gainsToken_
edm::EDPutTokenT< cms::cuda::Product< SiPixelClustersCUDA > > clusterPutToken_
std::unique_ptr< pixelgpudetails::SiPixelRawToClusterGPUKernel::WordFedAppender > wordFedAppender_
edm::EDPutTokenT< cms::cuda::Product< SiPixelDigisCUDA > > digiPutToken_
bool enabled() const
Definition: CUDAService.h:22
std::vector< std::string > getParameterNames() const
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
const SiPixelClusterThresholds clusterThresholds_
std::unique_ptr< PixelUnpackingRegions > regions_
edm::ESGetToken< SiPixelROCsStatusAndMappingWrapper, CkfComponentsRecord > gpuMapToken_
edm::EDGetTokenT< FEDRawDataCollection > rawGetToken_
edm::ESGetToken< SiPixelFedCablingMap, SiPixelFedCablingMapRcd > cablingMapToken_
SiPixelRawToClusterCUDA::~SiPixelRawToClusterCUDA ( )
overridedefault

Member Function Documentation

void SiPixelRawToClusterCUDA::acquire ( const edm::Event iEvent,
const edm::EventSetup iSetup,
edm::WaitingTaskWithArenaHolder  waitingTaskHolder 
)
overrideprivate

Definition at line 136 of file SiPixelRawToClusterCUDA.cc.

References cms::cuda::assert(), cabling_, cablingMap_, cablingMapToken_, edm::ESWatcher< T >::check(), ErrorCheckerBase::checkCRC(), ErrorCheckerBase::checkHeader(), ErrorCheckerBase::checkTrailer(), clusterThresholds_, ctxState_, FEDRawData::data(), errors_, Exception, l1tstage2_dqm_sourceclient-live_cfg::fedId, fedIds_, gainsToken_, edm::Event::get(), edm::EventSetup::getHandle(), edm::EventSetup::getTransientHandle(), gpuAlgo_, gpuMapToken_, includeErrors_, edm::MessageDrop::instance(), isRun2_, LogDebug, pixelgpudetails::SiPixelRawToClusterGPUKernel::makeClustersAsync(), maxFedWords_, FEDNumbering::MINSiPixeluTCAFEDID, eostools::move(), rawGetToken_, recordWatcher_, regions_, FEDRawData::size(), edm::Event::streamID(), useQuality_, and wordFedAppender_.

138  {
139  cms::cuda::ScopedContextAcquire ctx{iEvent.streamID(), std::move(waitingTaskHolder), ctxState_};
140 
141  auto hgpuMap = iSetup.getHandle(gpuMapToken_);
142  if (hgpuMap->hasQuality() != useQuality_) {
143  throw cms::Exception("LogicError")
144  << "UseQuality of the module (" << useQuality_
145  << ") differs the one from SiPixelROCsStatusAndMappingWrapper. Please fix your configuration.";
146  }
147  // get the GPU product already here so that the async transfer can begin
148  const auto* gpuMap = hgpuMap->getGPUProductAsync(ctx.stream());
149 
150  auto hgains = iSetup.getHandle(gainsToken_);
151  // get the GPU product already here so that the async transfer can begin
152  const auto* gpuGains = hgains->getGPUProductAsync(ctx.stream());
153 
154  cms::cuda::device::unique_ptr<unsigned char[]> modulesToUnpackRegional;
155  const unsigned char* gpuModulesToUnpack;
156 
157  if (regions_) {
158  regions_->run(iEvent, iSetup);
159  LogDebug("SiPixelRawToCluster") << "region2unpack #feds: " << regions_->nFEDs();
160  LogDebug("SiPixelRawToCluster") << "region2unpack #modules (BPIX,EPIX,total): " << regions_->nBarrelModules() << " "
161  << regions_->nForwardModules() << " " << regions_->nModules();
162  modulesToUnpackRegional = hgpuMap->getModToUnpRegionalAsync(*(regions_->modulesToUnpack()), ctx.stream());
163  gpuModulesToUnpack = modulesToUnpackRegional.get();
164  } else {
165  gpuModulesToUnpack = hgpuMap->getModToUnpAllAsync(ctx.stream());
166  }
167 
168  // initialize cabling map or update if necessary
169  if (recordWatcher_.check(iSetup)) {
170  // cabling map, which maps online address (fed->link->ROC->local pixel) to offline (DetId->global pixel)
171  auto cablingMap = iSetup.getTransientHandle(cablingMapToken_);
172  cablingMap_ = cablingMap.product();
173  fedIds_ = cablingMap->fedIds();
174  cabling_ = cablingMap->cablingTree();
175  LogDebug("map version:") << cabling_->version();
176  }
177 
178  const auto& buffers = iEvent.get(rawGetToken_);
179 
180  errors_.clear();
181 
182  // GPU specific: Data extraction for RawToDigi GPU
183  unsigned int wordCounterGPU = 0;
184  unsigned int fedCounter = 0;
185  bool errorsInEvent = false;
186 
187  // In CPU algorithm this loop is part of PixelDataFormatter::interpretRawData()
188  ErrorChecker errorcheck;
189  for (int fedId : fedIds_) {
190  if (regions_ && !regions_->mayUnpackFED(fedId))
191  continue;
192 
193  // for GPU
194  // first 150 index stores the fedId and next 150 will store the
195  // start index of word in that fed
197  fedCounter++;
198 
199  // get event data for this fed
200  const FEDRawData& rawData = buffers.FEDData(fedId);
201 
202  // GPU specific
203  int nWords = rawData.size() / sizeof(cms_uint64_t);
204  if (nWords == 0) {
205  continue;
206  }
207 
208  // check CRC bit
209  const cms_uint64_t* trailer = reinterpret_cast<const cms_uint64_t*>(rawData.data()) + (nWords - 1);
210  if (not errorcheck.checkCRC(errorsInEvent, fedId, trailer, errors_)) {
211  continue;
212  }
213 
214  // check headers
215  const cms_uint64_t* header = reinterpret_cast<const cms_uint64_t*>(rawData.data());
216  header--;
217  bool moreHeaders = true;
218  while (moreHeaders) {
219  header++;
220  bool headerStatus = errorcheck.checkHeader(errorsInEvent, fedId, header, errors_);
221  moreHeaders = headerStatus;
222  }
223 
224  // check trailers
225  bool moreTrailers = true;
226  trailer++;
227  while (moreTrailers) {
228  trailer--;
229  bool trailerStatus = errorcheck.checkTrailer(errorsInEvent, fedId, nWords, trailer, errors_);
230  moreTrailers = trailerStatus;
231  }
232 
233  const cms_uint32_t* bw = (const cms_uint32_t*)(header + 1);
234  const cms_uint32_t* ew = (const cms_uint32_t*)(trailer);
235 
236  assert(0 == (ew - bw) % 2);
237  wordFedAppender_->initializeWordFed(fedId, wordCounterGPU, bw, (ew - bw));
238  wordCounterGPU += (ew - bw);
239 
240  } // end of for loop
241 
244  gpuMap,
245  gpuModulesToUnpack,
246  gpuGains,
249  wordCounterGPU,
250  fedCounter,
251  maxFedWords_,
252  useQuality_,
254  edm::MessageDrop::instance()->debugEnabled,
255  ctx.stream());
256 }
std::unique_ptr< SiPixelFedCablingTree > cabling_
void makeClustersAsync(bool isRun2, const SiPixelClusterThresholds clusterThresholds, const SiPixelROCsStatusAndMapping *cablingMap, const unsigned char *modToUnp, const SiPixelGainForHLTonGPU *gains, const WordFedAppender &wordFed, SiPixelFormatterErrors &&errors, const uint32_t wordCounter, const uint32_t fedCounter, const uint32_t maxFedWords, bool useQualityInfo, bool includeErrors, bool debug, cudaStream_t stream)
edm::ESWatcher< SiPixelFedCablingMapRcd > recordWatcher_
cms::cuda::ContextState ctxState_
edm::ESGetToken< SiPixelGainCalibrationForHLTGPU, SiPixelGainCalibrationForHLTGPURcd > gainsToken_
static MessageDrop * instance()
Definition: MessageDrop.cc:33
const SiPixelFedCablingMap * cablingMap_
std::unique_ptr< T, impl::DeviceDeleter > unique_ptr
assert(be >=bs)
std::unique_ptr< pixelgpudetails::SiPixelRawToClusterGPUKernel::WordFedAppender > wordFedAppender_
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:45
bool checkHeader(bool &errorsInEvent, int fedId, const Word64 *header, SiPixelFormatterErrors &errors) const
def move
Definition: eostools.py:511
bool get(ProductID const &oid, Handle< PROD > &result) const
Definition: Event.h:346
unsigned int cms_uint32_t
Definition: typedefs.h:15
std::vector< unsigned int > fedIds_
bool checkCRC(bool &errorsInEvent, int fedId, const Word64 *trailer, SiPixelFormatterErrors &errors) const
bool check(const edm::EventSetup &iSetup)
Definition: ESWatcher.h:57
ESTransientHandle< T > getTransientHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:168
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:24
const SiPixelClusterThresholds clusterThresholds_
StreamID streamID() const
Definition: Event.h:98
pixelgpudetails::SiPixelRawToClusterGPUKernel gpuAlgo_
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:157
unsigned long long cms_uint64_t
Definition: typedefs.h:17
std::unique_ptr< PixelUnpackingRegions > regions_
edm::ESGetToken< SiPixelROCsStatusAndMappingWrapper, CkfComponentsRecord > gpuMapToken_
PixelDataFormatter::Errors errors_
edm::EDGetTokenT< FEDRawDataCollection > rawGetToken_
bool checkTrailer(bool &errorsInEvent, int fedId, unsigned int nWords, const Word64 *trailer, SiPixelFormatterErrors &errors) const
edm::ESGetToken< SiPixelFedCablingMap, SiPixelFedCablingMapRcd > cablingMapToken_
#define LogDebug(id)
void SiPixelRawToClusterCUDA::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 114 of file SiPixelRawToClusterCUDA.cc.

References edm::ParameterSetDescription::add(), edm::ParameterSetDescription::addOptional(), edm::ConfigurationDescriptions::addWithDefaultLabel(), submitPVResolutionJobs::desc, HLT_FULL_cff::InputTag, kSiPixelClusterThresholdsDefaultPhase1, SiPixelClusterThresholds::layer1, pixelgpudetails::MAX_FED, pixelgpudetails::MAX_WORD, SiPixelClusterThresholds::otherLayers, and AlCaHLTBitMon_QueryRunRegistry::string.

114  {
116  desc.add<bool>("isRun2", true);
117  desc.add<bool>("IncludeErrors", true);
118  desc.add<bool>("UseQualityInfo", false);
119  desc.add<uint32_t>("MaxFEDWords", pixelgpudetails::MAX_FED * pixelgpudetails::MAX_WORD);
120  desc.add<int32_t>("clusterThreshold_layer1", kSiPixelClusterThresholdsDefaultPhase1.layer1);
121  desc.add<int32_t>("clusterThreshold_otherLayers", kSiPixelClusterThresholdsDefaultPhase1.otherLayers);
122  desc.add<edm::InputTag>("InputLabel", edm::InputTag("rawDataCollector"));
123  {
125  psd0.addOptional<std::vector<edm::InputTag>>("inputs");
126  psd0.addOptional<std::vector<double>>("deltaPhi");
127  psd0.addOptional<std::vector<double>>("maxZ");
128  psd0.addOptional<edm::InputTag>("beamSpot");
129  desc.add<edm::ParameterSetDescription>("Regions", psd0)
130  ->setComment("## Empty Regions PSet means complete unpacking");
131  }
132  desc.add<std::string>("CablingMapLabel", "")->setComment("CablingMap label"); //Tav
133  descriptions.addWithDefaultLabel(desc);
134 }
void addWithDefaultLabel(ParameterSetDescription const &psetDescription)
ParameterDescriptionBase * addOptional(U const &iLabel, T const &value)
ParameterDescriptionBase * add(U const &iLabel, T const &value)
constexpr unsigned int MAX_FED
constexpr SiPixelClusterThresholds kSiPixelClusterThresholdsDefaultPhase1
void SiPixelRawToClusterCUDA::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 258 of file SiPixelRawToClusterCUDA.cc.

References clusterPutToken_, ctxState_, digiErrorPutToken_, digiPutToken_, pixelgpudetails::SiPixelRawToClusterGPUKernel::getErrors(), pixelgpudetails::SiPixelRawToClusterGPUKernel::getResults(), gpuAlgo_, includeErrors_, eostools::move(), and createJobs::tmp.

258  {
260 
261  auto tmp = gpuAlgo_.getResults();
262  ctx.emplace(iEvent, digiPutToken_, std::move(tmp.first));
263  ctx.emplace(iEvent, clusterPutToken_, std::move(tmp.second));
264  if (includeErrors_) {
265  ctx.emplace(iEvent, digiErrorPutToken_, gpuAlgo_.getErrors());
266  }
267 }
cms::cuda::ContextState ctxState_
edm::EDPutTokenT< cms::cuda::Product< SiPixelDigiErrorsCUDA > > digiErrorPutToken_
std::pair< SiPixelDigisCUDA, SiPixelClustersCUDA > getResults()
edm::EDPutTokenT< cms::cuda::Product< SiPixelClustersCUDA > > clusterPutToken_
edm::EDPutTokenT< cms::cuda::Product< SiPixelDigisCUDA > > digiPutToken_
def move
Definition: eostools.py:511
pixelgpudetails::SiPixelRawToClusterGPUKernel gpuAlgo_
tmp
align.sh
Definition: createJobs.py:716

Member Data Documentation

std::unique_ptr<SiPixelFedCablingTree> SiPixelRawToClusterCUDA::cabling_
private

Definition at line 69 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

const SiPixelFedCablingMap* SiPixelRawToClusterCUDA::cablingMap_ = nullptr
private

Definition at line 71 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

edm::ESGetToken<SiPixelFedCablingMap, SiPixelFedCablingMapRcd> SiPixelRawToClusterCUDA::cablingMapToken_
private

Definition at line 67 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

edm::EDPutTokenT<cms::cuda::Product<SiPixelClustersCUDA> > SiPixelRawToClusterCUDA::clusterPutToken_
private

Definition at line 60 of file SiPixelRawToClusterCUDA.cc.

Referenced by produce().

const SiPixelClusterThresholds SiPixelRawToClusterCUDA::clusterThresholds_
private

Definition at line 82 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

cms::cuda::ContextState SiPixelRawToClusterCUDA::ctxState_
private

Definition at line 62 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire(), and produce().

edm::EDPutTokenT<cms::cuda::Product<SiPixelDigiErrorsCUDA> > SiPixelRawToClusterCUDA::digiErrorPutToken_
private

Definition at line 59 of file SiPixelRawToClusterCUDA.cc.

Referenced by produce().

edm::EDPutTokenT<cms::cuda::Product<SiPixelDigisCUDA> > SiPixelRawToClusterCUDA::digiPutToken_
private

Definition at line 58 of file SiPixelRawToClusterCUDA.cc.

Referenced by produce().

PixelDataFormatter::Errors SiPixelRawToClusterCUDA::errors_
private

Definition at line 76 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

std::vector<unsigned int> SiPixelRawToClusterCUDA::fedIds_
private

Definition at line 70 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

Definition at line 66 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

pixelgpudetails::SiPixelRawToClusterGPUKernel SiPixelRawToClusterCUDA::gpuAlgo_
private

Definition at line 74 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire(), and produce().

edm::ESGetToken<SiPixelROCsStatusAndMappingWrapper, CkfComponentsRecord> SiPixelRawToClusterCUDA::gpuMapToken_
private

Definition at line 65 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

const bool SiPixelRawToClusterCUDA::includeErrors_
private

Definition at line 79 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire(), and produce().

const bool SiPixelRawToClusterCUDA::isRun2_
private

Definition at line 78 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

const uint32_t SiPixelRawToClusterCUDA::maxFedWords_
private

Definition at line 81 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

edm::EDGetTokenT<FEDRawDataCollection> SiPixelRawToClusterCUDA::rawGetToken_
private

Definition at line 56 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

edm::ESWatcher<SiPixelFedCablingMapRcd> SiPixelRawToClusterCUDA::recordWatcher_
private

Definition at line 64 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

std::unique_ptr<PixelUnpackingRegions> SiPixelRawToClusterCUDA::regions_
private

Definition at line 72 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

const bool SiPixelRawToClusterCUDA::useQuality_
private

Definition at line 80 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().

std::unique_ptr<pixelgpudetails::SiPixelRawToClusterGPUKernel::WordFedAppender> SiPixelRawToClusterCUDA::wordFedAppender_
private

Definition at line 75 of file SiPixelRawToClusterCUDA.cc.

Referenced by acquire().