1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef CondFormatsModuleRcd_HGCalElectronicsMappingRcd_h
#define CondFormatsModuleRcd_HGCalElectronicsMappingRcd_h
// -*- C++ -*-
//
// Package: CondFormats/DataRecords
// Class : HGCalElectronicsMappingRcd
//
/**\class HGCalElectronicsMappingRcd HGCalElectronicsMappingRcd.h CondFormats/DataRecords/interface/HGCalElectronicsMappingRcd.h
Description: This record *is temporary* and it is used to store the parameters which are used to describe
- dense indexing of HGCAL modules and corresponding cells in the readound sequence
- module and cell information in the electronics mapping
The record will change to its final format(s) once the we settle on the final formats to be used in CondDB
*/
//
// Author: Pedro Vieira De Castro Ferreira Da Silva
// Created: Mon, 13 Nov 2023 12:02:11 GMT
//
#include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
class HGCalElectronicsMappingRcd : public edm::eventsetup::EventSetupRecordImplementation<HGCalElectronicsMappingRcd> {
};
#endif
|