From 39c7c83415cf105fb8ab6ea52948e094ff91924d Mon Sep 17 00:00:00 2001 From: Sunanda Date: Mon, 18 Apr 2022 10:17:53 +0200 Subject: [PATCH] Code check --- Geometry/HGCalCommonData/interface/HGCalCassette.h | 4 +--- Geometry/HGCalCommonData/src/HGCalCassette.cc | 5 +++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Geometry/HGCalCommonData/interface/HGCalCassette.h b/Geometry/HGCalCommonData/interface/HGCalCassette.h index e29364cad8f1b..6342df5fec747 100644 --- a/Geometry/HGCalCommonData/interface/HGCalCassette.h +++ b/Geometry/HGCalCommonData/interface/HGCalCassette.h @@ -7,9 +7,7 @@ class HGCalCassette { public: - HGCalCassette(int cassette, const std::vector& shifts) { - setParameter(cassette, shifts); - } + HGCalCassette(int cassette, const std::vector& shifts) { setParameter(cassette, shifts); } HGCalCassette() {} void setParameter(int cassette, const std::vector& shifts); diff --git a/Geometry/HGCalCommonData/src/HGCalCassette.cc b/Geometry/HGCalCommonData/src/HGCalCassette.cc index 2e2cb2ad4f379..9275e70f4f045 100644 --- a/Geometry/HGCalCommonData/src/HGCalCassette.cc +++ b/Geometry/HGCalCommonData/src/HGCalCassette.cc @@ -35,8 +35,9 @@ std::pair HGCalCassette::getShift(int layer, int zside, int cass int loc = cassette_ * (layer - 1) + locc; std::pair xy = std::make_pair(shifts_[loc] * cos_[locc], shifts_[loc] * sin_[locc]); #ifdef EDM_ML_DEBUG - edm::LogVerbatim("HGCalGeom") << "HGCalCassette::getShift: Layer " << layer << " zside " << zside << " cassette " << cassette << " Loc " << locc << ":" << loc << " shift " << xy.first << ":" << xy.second; + edm::LogVerbatim("HGCalGeom") << "HGCalCassette::getShift: Layer " << layer << " zside " << zside << " cassette " + << cassette << " Loc " << locc << ":" << loc << " shift " << xy.first << ":" + << xy.second; #endif return xy; } -