Skip to content

Commit

Permalink
Merge pull request #29623 from fabiocos/fc-DDCMSverbosity
Browse files Browse the repository at this point in the history
DetectorDescription FilteredView: remove debugging printouts
  • Loading branch information
cmsbuild authored May 4, 2020
2 parents bc3645b + 5e8c307 commit acf9623
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions DetectorDescription/DDCMS/src/DDFilteredView.cc
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,6 @@ const RotationMatrix DDFilteredView::rotation() const {
return RotationMatrix();
}

LogVerbatim("DDFilteredView") << "Rotation matrix components (1st 3) = " << rotation[0] << ", " << rotation[1] << ", "
<< rotation[2];
RotationMatrix rotMatrix;
rotMatrix.SetComponents(rotation[0],
rotation[1],
Expand All @@ -147,8 +145,6 @@ void DDFilteredView::rot(dd4hep::Rotation3D& matrixOut) const {
LogError("DDFilteredView") << "Current node has no valid rotation matrix.";
return;
}
LogVerbatim("DDFilteredView") << "Rotation matrix components (1st 3) = " << rotation[0] << ", " << rotation[1] << ", "
<< rotation[2];
matrixOut.SetComponents(rotation[0],
rotation[1],
rotation[2],
Expand Down

0 comments on commit acf9623

Please sign in to comment.