CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
SiPixelRawToClusterCUDAT< TrackerTraits > Class Template Reference
Inheritance diagram for SiPixelRawToClusterCUDAT< TrackerTraits >:
edm::stream::EDProducer< edm::ExternalWork >

Public Types

using GPUAlgo = pixelgpudetails::SiPixelRawToClusterGPUKernel< TrackerTraits >
 
- 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
 

Public Member Functions

 SiPixelRawToClusterCUDAT (const edm::ParameterSet &iConfig)
 
 ~SiPixelRawToClusterCUDAT () 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< SiPixelFedCablingTreecabling_
 
const SiPixelFedCablingMapcablingMap_ = nullptr
 
edm::ESGetToken< SiPixelFedCablingMap, SiPixelFedCablingMapRcdcablingMapToken_
 
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, SiPixelGainCalibrationForHLTGPURcdgainsToken_
 
GPUAlgo gpuAlgo_
 
edm::ESGetToken< SiPixelROCsStatusAndMappingWrapper, CkfComponentsRecordgpuMapToken_
 
const bool includeErrors_
 
uint32_t nDigis_
 
edm::EDGetTokenT< FEDRawDataCollectionrawGetToken_
 
edm::ESWatcher< SiPixelFedCablingMapRcdrecordWatcher_
 
std::unique_ptr< PixelUnpackingRegionsregions_
 
const bool useQuality_
 

Detailed Description

template<typename TrackerTraits>
class SiPixelRawToClusterCUDAT< TrackerTraits >

Definition at line 46 of file SiPixelRawToClusterCUDA.cc.

Member Typedef Documentation

◆ GPUAlgo

template<typename TrackerTraits >
using SiPixelRawToClusterCUDAT< TrackerTraits >::GPUAlgo = pixelgpudetails::SiPixelRawToClusterGPUKernel<TrackerTraits>

Definition at line 52 of file SiPixelRawToClusterCUDA.cc.

Constructor & Destructor Documentation

◆ SiPixelRawToClusterCUDAT()

template<typename TrackerTraits >
SiPixelRawToClusterCUDAT< TrackerTraits >::SiPixelRawToClusterCUDAT ( const edm::ParameterSet iConfig)
explicit

Definition at line 88 of file SiPixelRawToClusterCUDA.cc.

References edm::ParameterSet::getParameter().

89  : rawGetToken_(consumes<FEDRawDataCollection>(iConfig.getParameter<edm::InputTag>("InputLabel"))),
92  gpuMapToken_(esConsumes<SiPixelROCsStatusAndMappingWrapper, CkfComponentsRecord>()),
93  gainsToken_(esConsumes<SiPixelGainCalibrationForHLTGPU, SiPixelGainCalibrationForHLTGPURcd>()),
94  cablingMapToken_(esConsumes<SiPixelFedCablingMap, SiPixelFedCablingMapRcd>(
95  edm::ESInputTag("", iConfig.getParameter<std::string>("CablingMapLabel")))),
96  includeErrors_(iConfig.getParameter<bool>("IncludeErrors")),
97  useQuality_(iConfig.getParameter<bool>("UseQualityInfo")),
98  clusterThresholds_{iConfig.getParameter<int32_t>("clusterThreshold_layer1"),
99  iConfig.getParameter<int32_t>("clusterThreshold_otherLayers"),
100  static_cast<float>(iConfig.getParameter<double>("VCaltoElectronGain")),
101  static_cast<float>(iConfig.getParameter<double>("VCaltoElectronGain_L1")),
102  static_cast<float>(iConfig.getParameter<double>("VCaltoElectronOffset")),
103  static_cast<float>(iConfig.getParameter<double>("VCaltoElectronOffset_L1"))} {
104  if (includeErrors_) {
105  digiErrorPutToken_ = produces<cms::cuda::Product<SiPixelDigiErrorsCUDA>>();
106  }
107 
108  // regions
109  if (!iConfig.getParameter<edm::ParameterSet>("Regions").getParameterNames().empty()) {
110  regions_ = std::make_unique<PixelUnpackingRegions>(iConfig, consumesCollector());
111  }
112 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
edm::ESGetToken< SiPixelROCsStatusAndMappingWrapper, CkfComponentsRecord > gpuMapToken_
edm::EDPutTokenT< cms::cuda::Product< SiPixelDigiErrorsCUDA > > digiErrorPutToken_
const SiPixelClusterThresholds clusterThresholds_
edm::ESGetToken< SiPixelFedCablingMap, SiPixelFedCablingMapRcd > cablingMapToken_
edm::ESGetToken< SiPixelGainCalibrationForHLTGPU, SiPixelGainCalibrationForHLTGPURcd > gainsToken_
std::unique_ptr< PixelUnpackingRegions > regions_
edm::EDGetTokenT< FEDRawDataCollection > rawGetToken_
edm::EDPutTokenT< cms::cuda::Product< SiPixelDigisCUDA > > digiPutToken_
edm::EDPutTokenT< cms::cuda::Product< SiPixelClustersCUDA > > clusterPutToken_
std::vector< std::string > getParameterNames() const

◆ ~SiPixelRawToClusterCUDAT()

template<typename TrackerTraits >
SiPixelRawToClusterCUDAT< TrackerTraits >::~SiPixelRawToClusterCUDAT ( )
overridedefault

Member Function Documentation

◆ acquire()

template<typename TrackerTraits >
void SiPixelRawToClusterCUDAT< TrackerTraits >::acquire ( const edm::Event iEvent,
const edm::EventSetup iSetup,
edm::WaitingTaskWithArenaHolder  waitingTaskHolder 
)
overrideprivate

Definition at line 145 of file SiPixelRawToClusterCUDA.cc.

References cms::cuda::assert(), Exception, l1tstage2_dqm_sourceclient-live_cfg::fedId, edm::EventSetup::getHandle(), edm::EventSetup::getTransientHandle(), RecoTauValidation_cfi::header, mps_fire::i, iEvent, pixelgpudetails::SiPixelRawToClusterGPUKernel< TrackerTraits >::WordFedAppender::initializeWordFed(), edm::MessageDrop::instance(), LogDebug, FEDNumbering::MINSiPixeluTCAFEDID, eostools::move(), l1ctLayer2EG_cff::nWords, l1tstage2_dqm_sourceclient-live_cfg::rawData, and command_line::start.

147  {
148  cms::cuda::ScopedContextAcquire ctx{iEvent.streamID(), std::move(waitingTaskHolder), ctxState_};
149 
150  auto hgpuMap = iSetup.getHandle(gpuMapToken_);
151  if (hgpuMap->hasQuality() != useQuality_) {
152  throw cms::Exception("LogicError")
153  << "UseQuality of the module (" << useQuality_
154  << ") differs the one from SiPixelROCsStatusAndMappingWrapper. Please fix your configuration.";
155  }
156  // get the GPU product already here so that the async transfer can begin
157  const auto* gpuMap = hgpuMap->getGPUProductAsync(ctx.stream());
158 
159  auto hgains = iSetup.getHandle(gainsToken_);
160  // get the GPU product already here so that the async transfer can begin
161  const auto* gpuGains = hgains->getGPUProductAsync(ctx.stream());
162 
163  cms::cuda::device::unique_ptr<unsigned char[]> modulesToUnpackRegional;
164  const unsigned char* gpuModulesToUnpack;
165 
166  if (regions_) {
167  regions_->run(iEvent, iSetup);
168  LogDebug("SiPixelRawToCluster") << "region2unpack #feds: " << regions_->nFEDs();
169  LogDebug("SiPixelRawToCluster") << "region2unpack #modules (BPIX,EPIX,total): " << regions_->nBarrelModules() << " "
170  << regions_->nForwardModules() << " " << regions_->nModules();
171  modulesToUnpackRegional = hgpuMap->getModToUnpRegionalAsync(*(regions_->modulesToUnpack()), ctx.stream());
172  gpuModulesToUnpack = modulesToUnpackRegional.get();
173  } else {
174  gpuModulesToUnpack = hgpuMap->getModToUnpAllAsync(ctx.stream());
175  }
176 
177  // initialize cabling map or update if necessary
178  if (recordWatcher_.check(iSetup)) {
179  // cabling map, which maps online address (fed->link->ROC->local pixel) to offline (DetId->global pixel)
180  auto cablingMap = iSetup.getTransientHandle(cablingMapToken_);
181  cablingMap_ = cablingMap.product();
182  fedIds_ = cablingMap->fedIds();
183  cabling_ = cablingMap->cablingTree();
184  LogDebug("map version:") << cabling_->version();
185  }
186 
187  const auto& buffers = iEvent.get(rawGetToken_);
188 
189  errors_.clear();
190 
191  // GPU specific: Data extraction for RawToDigi GPU
192  unsigned int wordCounter = 0;
193  unsigned int fedCounter = 0;
194  bool errorsInEvent = false;
195 
196  std::vector<unsigned int> index(fedIds_.size(), 0);
197  std::vector<cms_uint32_t const*> start(fedIds_.size(), nullptr);
198  std::vector<ptrdiff_t> words(fedIds_.size(), 0);
199 
200  // In CPU algorithm this loop is part of PixelDataFormatter::interpretRawData()
201  ErrorChecker errorcheck;
202  for (uint32_t i = 0; i < fedIds_.size(); ++i) {
203  const int fedId = fedIds_[i];
204  if (regions_ && !regions_->mayUnpackFED(fedId))
205  continue;
206 
207  // for GPU
208  // first 150 index stores the fedId and next 150 will store the
209  // start index of word in that fed
211  fedCounter++;
212 
213  // get event data for this fed
214  const FEDRawData& rawData = buffers.FEDData(fedId);
215 
216  // GPU specific
217  int nWords = rawData.size() / sizeof(cms_uint64_t);
218  if (nWords == 0) {
219  continue;
220  }
221 
222  // check CRC bit
223  const cms_uint64_t* trailer = reinterpret_cast<const cms_uint64_t*>(rawData.data()) + (nWords - 1);
224  if (not errorcheck.checkCRC(errorsInEvent, fedId, trailer, errors_)) {
225  continue;
226  }
227 
228  // check headers
229  const cms_uint64_t* header = reinterpret_cast<const cms_uint64_t*>(rawData.data());
230  header--;
231  bool moreHeaders = true;
232  while (moreHeaders) {
233  header++;
234  bool headerStatus = errorcheck.checkHeader(errorsInEvent, fedId, header, errors_);
235  moreHeaders = headerStatus;
236  }
237 
238  // check trailers
239  bool moreTrailers = true;
240  trailer++;
241  while (moreTrailers) {
242  trailer--;
243  bool trailerStatus = errorcheck.checkTrailer(errorsInEvent, fedId, nWords, trailer, errors_);
244  moreTrailers = trailerStatus;
245  }
246 
247  const cms_uint32_t* bw = (const cms_uint32_t*)(header + 1);
248  const cms_uint32_t* ew = (const cms_uint32_t*)(trailer);
249 
250  assert(0 == (ew - bw) % 2);
251  index[i] = wordCounter;
252  start[i] = bw;
253  words[i] = (ew - bw);
254  wordCounter += (ew - bw);
255 
256  } // end of for loop
257 
258  nDigis_ = wordCounter;
259 
260  if (nDigis_ == 0)
261  return;
262 
263  // copy the FED data to a single cpu buffer
264  typename GPUAlgo::WordFedAppender wordFedAppender(nDigis_, ctx.stream());
265  for (uint32_t i = 0; i < fedIds_.size(); ++i) {
266  wordFedAppender.initializeWordFed(fedIds_[i], index[i], start[i], words[i]);
267  }
268 
270  gpuMap,
271  gpuModulesToUnpack,
272  gpuGains,
273  wordFedAppender,
275  wordCounter,
276  fedCounter,
277  useQuality_,
279  edm::MessageDrop::instance()->debugEnabled,
280  ctx.stream());
281 }
Definition: start.py:1
PixelDataFormatter::Errors errors_
void makePhase1ClustersAsync(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, bool useQualityInfo, bool includeErrors, bool debug, cudaStream_t stream)
edm::ESGetToken< SiPixelROCsStatusAndMappingWrapper, CkfComponentsRecord > gpuMapToken_
std::vector< unsigned int > fedIds_
static MessageDrop * instance()
Definition: MessageDrop.cc:33
std::unique_ptr< T, impl::DeviceDeleter > unique_ptr
assert(be >=bs)
int iEvent
Definition: GenABIO.cc:224
const SiPixelClusterThresholds clusterThresholds_
edm::ESGetToken< SiPixelFedCablingMap, SiPixelFedCablingMapRcd > cablingMapToken_
const SiPixelFedCablingMap * cablingMap_
edm::ESGetToken< SiPixelGainCalibrationForHLTGPU, SiPixelGainCalibrationForHLTGPURcd > gainsToken_
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:130
cms::cuda::ContextState ctxState_
unsigned int cms_uint32_t
Definition: typedefs.h:15
std::unique_ptr< PixelUnpackingRegions > regions_
bool check(const edm::EventSetup &iSetup)
Definition: ESWatcher.h:57
edm::EDGetTokenT< FEDRawDataCollection > rawGetToken_
ESTransientHandle< T > getTransientHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:141
unsigned long long cms_uint64_t
Definition: typedefs.h:17
edm::ESWatcher< SiPixelFedCablingMapRcd > recordWatcher_
def move(src, dest)
Definition: eostools.py:511
std::unique_ptr< SiPixelFedCablingTree > cabling_
#define LogDebug(id)

◆ fillDescriptions()

template<typename TrackerTraits >
void SiPixelRawToClusterCUDAT< TrackerTraits >::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 115 of file SiPixelRawToClusterCUDA.cc.

References edm::ParameterSetDescription::addOptional(), edm::ConfigurationDescriptions::addWithDefaultLabel(), gpuClustering::clusterThresholdLayerOne, gpuClustering::clusterThresholdOtherLayers, submitPVResolutionJobs::desc, ProducerED_cfi::InputTag, and AlCaHLTBitMon_QueryRunRegistry::string.

115  {
117  desc.add<bool>("IncludeErrors", true);
118  desc.add<bool>("UseQualityInfo", false);
119  // Note: this parameter is obsolete: it is ignored and will have no effect.
120  // It is kept to avoid breaking older configurations, and will not be printed in the generated cfi.py file.
121  desc.addOptionalNode(edm::ParameterDescription<uint32_t>("MaxFEDWords", 0, true), false)
122  ->setComment("This parameter is obsolete and will be ignored.");
123  //Clustering Thresholds
124  desc.add<int32_t>("clusterThreshold_layer1", gpuClustering::clusterThresholdLayerOne);
125  desc.add<int32_t>("clusterThreshold_otherLayers", gpuClustering::clusterThresholdOtherLayers);
126  desc.add<double>("VCaltoElectronGain", 47.f);
127  desc.add<double>("VCaltoElectronGain_L1", 50.f);
128  desc.add<double>("VCaltoElectronOffset", -60.f);
129  desc.add<double>("VCaltoElectronOffset_L1", -670.f);
130  desc.add<edm::InputTag>("InputLabel", edm::InputTag("rawDataCollector"));
131  {
133  psd0.addOptional<std::vector<edm::InputTag>>("inputs");
134  psd0.addOptional<std::vector<double>>("deltaPhi");
135  psd0.addOptional<std::vector<double>>("maxZ");
136  psd0.addOptional<edm::InputTag>("beamSpot");
137  desc.add<edm::ParameterSetDescription>("Regions", psd0)
138  ->setComment("## Empty Regions PSet means complete unpacking");
139  }
140  desc.add<std::string>("CablingMapLabel", "")->setComment("CablingMap label"); //Tav
141  descriptions.addWithDefaultLabel(desc);
142 }
void addWithDefaultLabel(ParameterSetDescription const &psetDescription)
ParameterDescriptionBase * addOptional(U const &iLabel, T const &value)
constexpr uint16_t clusterThresholdOtherLayers
constexpr uint16_t clusterThresholdLayerOne

◆ produce()

template<typename TrackerTraits >
void SiPixelRawToClusterCUDAT< TrackerTraits >::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 284 of file SiPixelRawToClusterCUDA.cc.

References iEvent, eostools::move(), pixelTopology::Phase1::numberOfModules, and createJobs::tmp.

284  {
286 
287  if (nDigis_ == 0) {
288  // Cannot use the default constructor here, as it would not allocate memory.
289  // In the case of no digis, clusters_d are not being instantiated, but are
290  // still used downstream to initialize TrackingRecHitSoADevice. If there
291  // are no valid pointers to clusters' Collection columns, instantiation
292  // of TrackingRecHits fail. Example: workflow 11604.0
293  SiPixelDigisCUDA digis_d = SiPixelDigisCUDA(nDigis_, ctx.stream());
295  ctx.emplace(iEvent, digiPutToken_, std::move(digis_d));
296  ctx.emplace(iEvent, clusterPutToken_, std::move(clusters_d));
297  if (includeErrors_) {
299  }
300  return;
301  }
302 
303  auto tmp = gpuAlgo_.getResults();
304  ctx.emplace(iEvent, digiPutToken_, std::move(tmp.first));
305  ctx.emplace(iEvent, clusterPutToken_, std::move(tmp.second));
306  if (includeErrors_) {
307  ctx.emplace(iEvent, digiErrorPutToken_, gpuAlgo_.getErrors());
308  }
309 }
edm::EDPutTokenT< cms::cuda::Product< SiPixelDigiErrorsCUDA > > digiErrorPutToken_
int iEvent
Definition: GenABIO.cc:224
std::pair< SiPixelDigisCUDA, SiPixelClustersCUDA > getResults()
cms::cuda::ContextState ctxState_
edm::EDPutTokenT< cms::cuda::Product< SiPixelDigisCUDA > > digiPutToken_
tmp
align.sh
Definition: createJobs.py:716
edm::EDPutTokenT< cms::cuda::Product< SiPixelClustersCUDA > > clusterPutToken_
def move(src, dest)
Definition: eostools.py:511
static constexpr uint16_t numberOfModules

Member Data Documentation

◆ cabling_

template<typename TrackerTraits >
std::unique_ptr<SiPixelFedCablingTree> SiPixelRawToClusterCUDAT< TrackerTraits >::cabling_
private

Definition at line 73 of file SiPixelRawToClusterCUDA.cc.

◆ cablingMap_

template<typename TrackerTraits >
const SiPixelFedCablingMap* SiPixelRawToClusterCUDAT< TrackerTraits >::cablingMap_ = nullptr
private

Definition at line 75 of file SiPixelRawToClusterCUDA.cc.

◆ cablingMapToken_

template<typename TrackerTraits >
edm::ESGetToken<SiPixelFedCablingMap, SiPixelFedCablingMapRcd> SiPixelRawToClusterCUDAT< TrackerTraits >::cablingMapToken_
private

Definition at line 71 of file SiPixelRawToClusterCUDA.cc.

◆ clusterPutToken_

template<typename TrackerTraits >
edm::EDPutTokenT<cms::cuda::Product<SiPixelClustersCUDA> > SiPixelRawToClusterCUDAT< TrackerTraits >::clusterPutToken_
private

Definition at line 64 of file SiPixelRawToClusterCUDA.cc.

◆ clusterThresholds_

template<typename TrackerTraits >
const SiPixelClusterThresholds SiPixelRawToClusterCUDAT< TrackerTraits >::clusterThresholds_
private

Definition at line 84 of file SiPixelRawToClusterCUDA.cc.

◆ ctxState_

template<typename TrackerTraits >
cms::cuda::ContextState SiPixelRawToClusterCUDAT< TrackerTraits >::ctxState_
private

Definition at line 66 of file SiPixelRawToClusterCUDA.cc.

◆ digiErrorPutToken_

template<typename TrackerTraits >
edm::EDPutTokenT<cms::cuda::Product<SiPixelDigiErrorsCUDA> > SiPixelRawToClusterCUDAT< TrackerTraits >::digiErrorPutToken_
private

Definition at line 63 of file SiPixelRawToClusterCUDA.cc.

◆ digiPutToken_

template<typename TrackerTraits >
edm::EDPutTokenT<cms::cuda::Product<SiPixelDigisCUDA> > SiPixelRawToClusterCUDAT< TrackerTraits >::digiPutToken_
private

Definition at line 62 of file SiPixelRawToClusterCUDA.cc.

◆ errors_

template<typename TrackerTraits >
PixelDataFormatter::Errors SiPixelRawToClusterCUDAT< TrackerTraits >::errors_
private

Definition at line 79 of file SiPixelRawToClusterCUDA.cc.

◆ fedIds_

template<typename TrackerTraits >
std::vector<unsigned int> SiPixelRawToClusterCUDAT< TrackerTraits >::fedIds_
private

Definition at line 74 of file SiPixelRawToClusterCUDA.cc.

◆ gainsToken_

template<typename TrackerTraits >
edm::ESGetToken<SiPixelGainCalibrationForHLTGPU, SiPixelGainCalibrationForHLTGPURcd> SiPixelRawToClusterCUDAT< TrackerTraits >::gainsToken_
private

Definition at line 70 of file SiPixelRawToClusterCUDA.cc.

◆ gpuAlgo_

template<typename TrackerTraits >
GPUAlgo SiPixelRawToClusterCUDAT< TrackerTraits >::gpuAlgo_
private

Definition at line 78 of file SiPixelRawToClusterCUDA.cc.

◆ gpuMapToken_

template<typename TrackerTraits >
edm::ESGetToken<SiPixelROCsStatusAndMappingWrapper, CkfComponentsRecord> SiPixelRawToClusterCUDAT< TrackerTraits >::gpuMapToken_
private

Definition at line 69 of file SiPixelRawToClusterCUDA.cc.

◆ includeErrors_

template<typename TrackerTraits >
const bool SiPixelRawToClusterCUDAT< TrackerTraits >::includeErrors_
private

Definition at line 81 of file SiPixelRawToClusterCUDA.cc.

◆ nDigis_

template<typename TrackerTraits >
uint32_t SiPixelRawToClusterCUDAT< TrackerTraits >::nDigis_
private

Definition at line 83 of file SiPixelRawToClusterCUDA.cc.

◆ rawGetToken_

template<typename TrackerTraits >
edm::EDGetTokenT<FEDRawDataCollection> SiPixelRawToClusterCUDAT< TrackerTraits >::rawGetToken_
private

Definition at line 60 of file SiPixelRawToClusterCUDA.cc.

◆ recordWatcher_

template<typename TrackerTraits >
edm::ESWatcher<SiPixelFedCablingMapRcd> SiPixelRawToClusterCUDAT< TrackerTraits >::recordWatcher_
private

Definition at line 68 of file SiPixelRawToClusterCUDA.cc.

◆ regions_

template<typename TrackerTraits >
std::unique_ptr<PixelUnpackingRegions> SiPixelRawToClusterCUDAT< TrackerTraits >::regions_
private

Definition at line 76 of file SiPixelRawToClusterCUDA.cc.

◆ useQuality_

template<typename TrackerTraits >
const bool SiPixelRawToClusterCUDAT< TrackerTraits >::useQuality_
private

Definition at line 82 of file SiPixelRawToClusterCUDA.cc.