From b409f0b8ea8ffae4eb888c5e2f907a153cd03fa4 Mon Sep 17 00:00:00 2001 From: Dinko Ferencek Date: Tue, 24 Nov 2020 02:13:31 +0100 Subject: [PATCH] code format updates in CalibTracker/SiPixelESProducers --- .../test/PixelFEDChannelCollectionMapTestReader.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/CalibTracker/SiPixelESProducers/test/PixelFEDChannelCollectionMapTestReader.cc b/CalibTracker/SiPixelESProducers/test/PixelFEDChannelCollectionMapTestReader.cc index 9a3089deb1105..f77b7928d542f 100644 --- a/CalibTracker/SiPixelESProducers/test/PixelFEDChannelCollectionMapTestReader.cc +++ b/CalibTracker/SiPixelESProducers/test/PixelFEDChannelCollectionMapTestReader.cc @@ -22,13 +22,15 @@ class PixelFEDChannelCollectionMapTestReader : public edm::one::EDAnalyzer<> { // ----------member data --------------------------- const bool printdebug_; const std::string formatedOutput_; - edm::ESGetToken pixelFEDChannelCollectionMapToken_; + edm::ESGetToken + pixelFEDChannelCollectionMapToken_; }; PixelFEDChannelCollectionMapTestReader::PixelFEDChannelCollectionMapTestReader(edm::ParameterSet const& p) : printdebug_(p.getUntrackedParameter("printDebug", true)), formatedOutput_(p.getUntrackedParameter("outputFile", "")), - pixelFEDChannelCollectionMapToken_(esConsumes()) { + pixelFEDChannelCollectionMapToken_( + esConsumes()) { edm::LogInfo("PixelFEDChannelCollectionMapTestReader") << "PixelFEDChannelCollectionMapTestReader" << std::endl; } @@ -52,7 +54,8 @@ void PixelFEDChannelCollectionMapTestReader::analyze(const edm::Event& e, const } //this part gets the handle of the event source and the record (i.e. the Database) - edm::ESHandle PixelFEDChannelCollectionMapHandle = context.getHandle(pixelFEDChannelCollectionMapToken_); + edm::ESHandle PixelFEDChannelCollectionMapHandle = + context.getHandle(pixelFEDChannelCollectionMapToken_); edm::LogInfo("PixelFEDChannelCollectionMapTestReader") << "got eshandle and context" << std::endl; const PixelFEDChannelCollectionMap* thePixelFEDChannelCollectionMap = PixelFEDChannelCollectionMapHandle.product();