Skip to content

Commit

Permalink
remove cout, add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
VinInn authored and fwyzard committed Jul 22, 2016
1 parent 20c7929 commit ba71754
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion TrackingTools/GsfTools/interface/CloseComponentsMerger.icc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ CloseComponentsMerger<N>::merge (const MultiState& mgs) const
if (noComp <=theMaxNumberOfComponents) return mgs;


while (true) {
while (true) { // termitates when the nunmber of components becomes less than allowed maximum
SingleStateVector merged; merged.reserve(noComp);

declareDynArray(float,noComp,weights);
Expand Down
3 changes: 1 addition & 2 deletions TrackingTools/TrajectoryState/src/BasicTrajectoryState.cc
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,9 @@ BasicTrajectoryState::rescaleError(double factor) {


#include "TrackingTools/TrajectoryState/interface/TrajectoryStateOnSurface.h"
#include<iostream>
BasicSingleTrajectoryState::Components const &
BasicSingleTrajectoryState::components() const {
std::cout << "who is calling me"<< std::endl;
edm::LogError("BasicSingleTrajectoryState") << "asking for componenets to a SingleTrajectoryState"<< std::endl;
assert(false);
}

0 comments on commit ba71754

Please sign in to comment.