CMS 3D CMS Logo

List of all members | Public Member Functions
HcalConvertedEffectivePedestalsGPU Class Referencefinal

#include <HcalConvertedEffectivePedestalsGPU.h>

Inheritance diagram for HcalConvertedEffectivePedestalsGPU:
HcalConvertedPedestalsGPU

Public Member Functions

 HcalConvertedPedestalsGPU (HcalPedestals const &, HcalQIEData const &, HcalQIETypes const &)
 
- Public Member Functions inherited from HcalConvertedPedestalsGPU
Product const & getProduct (cudaStream_t) const
 
 HcalConvertedPedestalsGPU (HcalPedestals const &, HcalQIEData const &, HcalQIETypes const &)
 
uint32_t offsetForHashes () const
 
 ~HcalConvertedPedestalsGPU ()=default
 

Additional Inherited Members

- Protected Attributes inherited from HcalConvertedPedestalsGPU
uint32_t offsetForHashes_
 
cms::cuda::ESProduct< Productproduct_
 
uint64_t totalChannels_
 
std::vector< float, cms::cuda::HostAllocator< float > > values_
 

Detailed Description

Definition at line 9 of file HcalConvertedEffectivePedestalsGPU.h.

Member Function Documentation

◆ HcalConvertedPedestalsGPU()

HcalConvertedPedestalsGPU::HcalConvertedPedestalsGPU

Definition at line 18 of file HcalConvertedPedestalsGPU.cc.

21  : totalChannels_{pedestals.getAllContainers()[0].second.size() + pedestals.getAllContainers()[1].second.size()},
22  offsetForHashes_{static_cast<uint32_t>(pedestals.getAllContainers()[0].second.size())},
23  values_(totalChannels_ * 4) {
24 #ifdef HCAL_MAHI_CPUDEBUG
25  std::cout << "hello from converted pedestals" << std::endl;
26  std::cout << "pedestals HB values = " << pedestals.getAllContainers()[0].second.size()
27  << " HE values = " << pedestals.getAllContainers()[1].second.size() << std::endl;
28  std::cout << "qiedata HB values = " << qieData.getAllContainers()[0].second.size()
29  << " HE values = " << qieData.getAllContainers()[1].second.size() << std::endl;
30 #endif
31 
32  // retrieve all collections
33  auto const pedestalsAll = pedestals.getAllContainers();
34  auto const qieDataAll = qieData.getAllContainers();
35  auto const qieTypesAll = qieTypes.getAllContainers();
36 
37  // have to convert to fc if stored in adc
38  auto const unitIsADC = pedestals.isADC();
39 
40  // fill in barrel
41  auto const& pedestalBarrelValues = pedestalsAll[0].second;
42  auto const& qieDataBarrelValues = qieDataAll[0].second;
43  auto const& qieTypesBarrelValues = qieTypesAll[0].second;
44 
45 #ifdef HCAL_MAHI_CPUDEBUG
46  assert(pedestalBarrelValues.size() == qieDataBarrelValues.size());
47  assert(pedestalBarrelValues.size() == qieTypesBarrelValues.size());
48 #endif
49 
50  for (uint64_t i = 0; i < pedestalBarrelValues.size(); ++i) {
51  auto const& qieCoder = qieDataBarrelValues[i];
52  auto const qieType = qieTypesBarrelValues[i].getValue() > 1 ? 1 : 0;
53  auto const& qieShape = qieData.getShape(qieType);
54 
55  values_[i * 4] = unitIsADC ? convert(pedestalBarrelValues[i].getValue(0), 0, qieCoder, qieShape)
56  : pedestalBarrelValues[i].getValue(0);
57  values_[i * 4 + 1] = unitIsADC ? convert(pedestalBarrelValues[i].getValue(1), 1, qieCoder, qieShape)
58  : pedestalBarrelValues[i].getValue(1);
59  values_[i * 4 + 2] = unitIsADC ? convert(pedestalBarrelValues[i].getValue(2), 2, qieCoder, qieShape)
60  : pedestalBarrelValues[i].getValue(2);
61  values_[i * 4 + 3] = unitIsADC ? convert(pedestalBarrelValues[i].getValue(3), 3, qieCoder, qieShape)
62  : pedestalBarrelValues[i].getValue(3);
63  }
64 
65  // fill in endcap
66  auto const& pedestalEndcapValues = pedestalsAll[1].second;
67  auto const& qieDataEndcapValues = qieDataAll[1].second;
68  auto const& qieTypesEndcapValues = qieTypesAll[1].second;
69 
70 #ifdef HCAL_MAHI_CPUDEBUG
71  assert(pedestalEndcapValues.size() == qieDataEndcapValues.size());
72  assert(pedestalEndcapValues.size() == qieTypesEndcapValues.size());
73 #endif
74 
75  auto const offset = pedestalBarrelValues.size();
76  for (uint64_t i = 0; i < pedestalEndcapValues.size(); ++i) {
77  auto const& qieCoder = qieDataEndcapValues[i];
78  auto const qieType = qieTypesEndcapValues[i].getValue() > 1 ? 1 : 0;
79  auto const& qieShape = qieData.getShape(qieType);
80  auto const off = offset + i;
81 
82  values_[off * 4] = unitIsADC ? convert(pedestalEndcapValues[i].getValue(0), 0, qieCoder, qieShape)
83  : pedestalEndcapValues[i].getValue(0);
84  values_[off * 4 + 1] = unitIsADC ? convert(pedestalEndcapValues[i].getValue(1), 1, qieCoder, qieShape)
85  : pedestalEndcapValues[i].getValue(1);
86  values_[off * 4 + 2] = unitIsADC ? convert(pedestalEndcapValues[i].getValue(2), 2, qieCoder, qieShape)
87  : pedestalEndcapValues[i].getValue(2);
88  values_[off * 4 + 3] = unitIsADC ? convert(pedestalEndcapValues[i].getValue(3), 3, qieCoder, qieShape)
89  : pedestalEndcapValues[i].getValue(3);
90 
91 #ifdef HCAL_MAHI_CPUDEBUG
92  if (pedestalEndcapValues[i].rawId() == DETID_TO_DEBUG) {
93  printf("qietype = %d\n", qieType);
94  printf("ped0 = %f ped1 = %f ped2 = %f ped3 = %f\n",
95  pedestalEndcapValues[i].getValue(0),
96  pedestalEndcapValues[i].getValue(1),
97  pedestalEndcapValues[i].getValue(2),
98  pedestalEndcapValues[i].getValue(3));
99  printf("converted: ped0 = %f ped1 = %f ped2 = %f ped3 = %f\n",
100  values_[off * 4],
101  values_[off * 4 + 1],
102  values_[off * 4 + 2],
103  values_[off * 4 + 3]);
104  }
105 #endif
106  }
107 }
assert(be >=bs)
def convert(infile, ofile)
std::vector< float, cms::cuda::HostAllocator< float > > values_
unsigned long long uint64_t
Definition: Time.h:13
const JetExtendedData & getValue(const Container &, const reco::JetBaseRef &)
get value for the association. Throw exception if no association found