Skip to content

Commit b0a2283

Browse files
committed
Remove debug statements
1 parent 4009961 commit b0a2283

File tree

7 files changed

+5
-17
lines changed

7 files changed

+5
-17
lines changed

Configuration/Geometry/python/defaultPhase2ConditionsEra_cff.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
from Configuration.AlCa.autoCond import autoCond
33
from Configuration.StandardSequences.Eras import eras
44

5-
# DEFAULT_VERSION = "Run4D110"
6-
DEFAULT_VERSION = "Run4D119"
5+
DEFAULT_VERSION = "Run4D110"
76

87
def get_era_and_conditions(version_key):
98
"""Retrieve the era and global tag for a given version key.

DataFormats/GeometrySurface/src/RectangularPlaneBounds.cc

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#define EDM_ML_DEBUG
2-
#include "FWCore/MessageLogger/interface/MessageLogger.h"
3-
41
#include "DataFormats/GeometrySurface/interface/RectangularPlaneBounds.h"
52
#include "DataFormats/GeometrySurface/interface/LocalError.h"
63
#include <cmath>
@@ -11,19 +8,13 @@ RectangularPlaneBounds::RectangularPlaneBounds(float w, float h, float t)
118
RectangularPlaneBounds::~RectangularPlaneBounds() {}
129

1310
bool RectangularPlaneBounds::inside(const Local3DPoint& p, const LocalError& err, float scale) const {
14-
LogDebug("RectangularPlaneBounds") << "pos " << p << " errors x/y " << std::sqrt(err.xx()) << " "
15-
<< std::sqrt(err.yy()) << " scale " << scale << " halfT/W/L " << halfThickness
16-
<< " " << halfWidth << " " << halfLength << " inside(p) " << inside(p);
1711
if ((scale >= 0) && inside(p))
1812
return true;
1913
return std::abs(p.z()) < halfThickness && (std::abs(p.x()) < halfWidth + std::sqrt(err.xx()) * scale) &&
2014
(std::abs(p.y()) < halfLength + std::sqrt(err.yy()) * scale);
2115
}
2216

2317
bool RectangularPlaneBounds::inside(const Local2DPoint& p, const LocalError& err, float scale) const {
24-
LogDebug("RectangularPlaneBounds") << "pos " << p << " errors x/y " << std::sqrt(err.xx()) << " "
25-
<< std::sqrt(err.yy()) << " scale " << scale << " halfT/W/L " << halfThickness
26-
<< " " << halfWidth << " " << halfLength << " inside(p) " << inside(p);
2718
if ((scale >= 0) && inside(p))
2819
return true;
2920
return (std::abs(p.x()) < halfWidth + std::sqrt(err.xx()) * scale) &&

Geometry/MTDGeometryBuilder/plugins/MTDTopologyEP.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define EDM_ML_DEBUG
1+
//#define EDM_ML_DEBUG
22

33
#include "FWCore/MessageLogger/interface/MessageLogger.h"
44
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"

RecoMTD/DetLayers/src/MTDDetSector.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define EDM_ML_DEBUG
1+
//#define EDM_ML_DEBUG
22

33
#include "RecoMTD/DetLayers/interface/MTDDetSector.h"
44
#include "DataFormats/ForwardDetId/interface/ETLDetId.h"

RecoMTD/DetLayers/src/MTDSectorForwardDoubleLayer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define EDM_ML_DEBUG
1+
//#define EDM_ML_DEBUG
22

33
#include <RecoMTD/DetLayers/interface/MTDSectorForwardDoubleLayer.h>
44
#include <RecoMTD/DetLayers/interface/MTDDetSector.h>

RecoMTD/DetLayers/src/MTDSectorForwardLayer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define EDM_ML_DEBUG
1+
//#define EDM_ML_DEBUG
22

33
#include <RecoMTD/DetLayers/interface/MTDSectorForwardLayer.h>
44
#include <RecoMTD/DetLayers/interface/MTDDetSector.h>

RecoMTD/TrackExtender/plugins/TrackExtenderWithMTD.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#define EDM_ML_DEBUG
2-
31
#include <sstream>
42

53
#include <CLHEP/Units/GlobalPhysicalConstants.h>

0 commit comments

Comments
 (0)