1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef LHCInfoPerFillRcd_LHCInfoPerFillRcd_h
#define LHCInfoPerFillRcd_LHCInfoPerFillRcd_h
// -*- C++ -*-
//
// Package: CondFormats/DataRecord
// Class : LHCInfoPerFillRcd
//
/**\class LHCInfoPerFillRcd LHCInfoPerFillRcd.h CondFormats/DataRecord/interface/LHCInfoPerFillRcd.h
Description: a class containing beam-related parameters and the state of the LHC
meant to be stored once or twice per fill and to be used instead of LHCInfo
Usage:
<usage>
*/
#include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
class LHCInfoPerFillRcd : public edm::eventsetup::EventSetupRecordImplementation<LHCInfoPerFillRcd> {};
#endif
|