Skip to content

Commit

Permalink
Cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lathomas committed Apr 2, 2024
1 parent 943c6ec commit 9a0d824
Showing 1 changed file with 0 additions and 56 deletions.
56 changes: 0 additions & 56 deletions DPGAnalysis/L1TNanoAOD/plugins/CaloTPTableProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
class CaloTPTableProducer : public edm::stream::EDProducer<> {
public:
explicit CaloTPTableProducer(const edm::ParameterSet&);
~CaloTPTableProducer() override;

static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);

Expand All @@ -59,11 +58,6 @@ class CaloTPTableProducer : public edm::stream::EDProducer<> {
void produce(edm::Event&, const edm::EventSetup&) override;
void endStream() override;

//void beginRun(edm::Run const&, edm::EventSetup const&) override;
//void endRun(edm::Run const&, edm::EventSetup const&) override;
//void beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override;
//void endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override;

// ----------member data ---------------------------
const double ecalLSB_;

Expand All @@ -76,17 +70,6 @@ class CaloTPTableProducer : public edm::stream::EDProducer<> {
const edm::ESGetToken<CaloTPGTranscoder, CaloTPGRecord> decoderToken_;
};

//
// constants, enums and typedefs
//

//
// static data member definitions
//

//
// constructors and destructor
//
CaloTPTableProducer::CaloTPTableProducer(const edm::ParameterSet& iConfig)
: ecalLSB_(iConfig.getUntrackedParameter<double>("ecalLSB", 0.5)),
ecalTPsToken_(consumes<EcalTrigPrimDigiCollection>(iConfig.getParameter<edm::InputTag>("ecalTPsSrc"))),
Expand All @@ -100,13 +83,6 @@ CaloTPTableProducer::CaloTPTableProducer(const edm::ParameterSet& iConfig)
//now do what ever other initialization is needed
}

CaloTPTableProducer::~CaloTPTableProducer() {
// do anything here that needs to be done at destruction time
// (e.g. close files, deallocate resources etc.)
//
// please remove this method altogether if it would be left empty
}

//
// member functions
//
Expand Down Expand Up @@ -213,38 +189,6 @@ void CaloTPTableProducer::endStream() {
// please remove this method if not needed
}

// ------------ method called when starting to processes a run ------------
/*
void
CaloTPTableProducer::beginRun(edm::Run const&, edm::EventSetup const&)
{
}
*/

// ------------ method called when ending the processing of a run ------------
/*
void
CaloTPTableProducer::endRun(edm::Run const&, edm::EventSetup const&)
{
}
*/

// ------------ method called when starting to processes a luminosity block ------------
/*
void
CaloTPTableProducer::beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&)
{
}
*/

// ------------ method called when ending the processing of a luminosity block ------------
/*
void
CaloTPTableProducer::endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&)
{
}
*/

// ------------ method fills 'descriptions' with the allowed parameters for the module ------------
void CaloTPTableProducer::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
Expand Down

0 comments on commit 9a0d824

Please sign in to comment.