Skip to content

Commit

Permalink
Code check
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunanda committed Aug 26, 2022
1 parent 31c9b15 commit c33c303
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Expand Up @@ -58,7 +58,7 @@ class testChannel : public edm::one::EDAnalyzer<> {
private:
int getHeaderSMId(const int headerId);

const edm::EDGetTokenT<EBDigiCollection> m_digiProducerToken; //! Token to access digis
const edm::EDGetTokenT<EBDigiCollection> m_digiProducerToken; //! Token to access digis
const edm::EDGetTokenT<EcalRawDataCollection> m_headerProducerToken; //! Token to access headers

const std::string m_xmlFile; //! name of the xml file to be saved
Expand Down
6 changes: 4 additions & 2 deletions CalibCalorimetry/EcalPedestalOffsets/src/testChannel.cc
Expand Up @@ -15,8 +15,10 @@

//! ctor
testChannel::testChannel(const edm::ParameterSet &paramSet)
: m_digiProducerToken(consumes<EBDigiCollection>(edm::InputTag(paramSet.getParameter<std::string>("digiProducer")))),
m_headerProducerToken(consumes<EcalRawDataCollection>(edm::InputTag(paramSet.getParameter<std::string>("headerProducer")))),
: m_digiProducerToken(
consumes<EBDigiCollection>(edm::InputTag(paramSet.getParameter<std::string>("digiProducer")))),
m_headerProducerToken(
consumes<EcalRawDataCollection>(edm::InputTag(paramSet.getParameter<std::string>("headerProducer")))),
m_xmlFile(paramSet.getParameter<std::string>("xmlFile")),
m_DACmin(paramSet.getParameter<int>("DACmin")),
m_DACmax(paramSet.getParameter<int>("DACmax")),
Expand Down

0 comments on commit c33c303

Please sign in to comment.