Skip to content

Commit

Permalink
Removing debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
rappoccio committed Oct 1, 2013
1 parent 95cf65c commit 40822ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SHyFT/src/SHyFTPFSelector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ SHyFTPFSelector::SHyFTPFSelector( edm::ParameterSet const & params ) :
jecPayloads_ (params.getParameter<std::vector<std::string> >("jecPayloads"))
{

std::cout << "MEBUG: " << eleMvaName_ << " " << eleMvaCut_ << " " << eleMaxMissHits_ << std::endl;
// std::cout << "MEBUG: " << eleMvaName_ << " " << eleMvaCut_ << " " << eleMaxMissHits_ << std::endl;

// make the bitset
push_back( "Inclusive" );
Expand Down Expand Up @@ -221,7 +221,7 @@ bool SHyFTPFSelector::operator() ( edm::EventBase const & event, pat::strbitset
double electronMVA = ielectron->electronID(eleMvaName_);
int missingHits = ielectron->gsfTrack()->trackerExpectedHitsInner().numberOfHits();

std::cout << "MEBUG: " << electronMVA << " " << missingHits << std::endl;
//std::cout << "MEBUG: " << electronMVA << " " << missingHits << std::endl;

if ( ielectron->pt() > eleEtMin_ && fabs(ielectron->eta()) < eleEtaMax_ && passTight && !inTransition && electronMVA > eleMvaCut_ && missingHits <= eleMaxMissHits_) {
selectedTightElectrons_.push_back( reco::ShallowClonePtrCandidate( edm::Ptr<pat::Electron>( electronHandle, ielectron - electronBegin ) ) );
Expand Down

0 comments on commit 40822ab

Please sign in to comment.