Skip to content

Commit

Permalink
removing cout command from EventShapeVariables.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
dmajumder committed Feb 4, 2015
1 parent 97d25ed commit 0fe84ba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions CommonTools/RecoAlgos/plugins/JetConstituentSelector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,7 @@ class JetConstituentSelector : public edm::EDFilter {
typedef JetConstituentSelector<reco::PFJet> PFJetConstituentSelector;
typedef JetConstituentSelector<pat::Jet, std::vector< edm::FwdPtr<pat::PackedCandidate> > > PatJetConstituentSelector;
typedef JetConstituentSelector<reco::PFJet, std::vector< edm::FwdPtr<pat::PackedCandidate> > > MiniAODJetConstituentSelector;
typedef JetConstituentSelector<reco::PFJet, std::vector< edm::FwdPtr<reco::PFCandidate> > > MyMiniAODJetConstituentSelector;

DEFINE_FWK_MODULE( PFJetConstituentSelector );
DEFINE_FWK_MODULE( PatJetConstituentSelector );
DEFINE_FWK_MODULE( MiniAODJetConstituentSelector );
DEFINE_FWK_MODULE( MyMiniAODJetConstituentSelector );
2 changes: 1 addition & 1 deletion PhysicsTools/CandUtils/src/EventShapeVariables.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/// constructor from reco::Candidates
EventShapeVariables::EventShapeVariables(const edm::View<reco::Candidate>& inputVectors)
{
std::cout << "inputVectors.size = " << inputVectors.size() << std::endl;
//std::cout << "inputVectors.size = " << inputVectors.size() << std::endl;
inputVectors_.reserve( inputVectors.size() );
for ( edm::View<reco::Candidate>::const_iterator vec = inputVectors.begin(); vec != inputVectors.end(); ++vec){
inputVectors_.push_back(math::XYZVector(vec->px(), vec->py(), vec->pz()));
Expand Down

0 comments on commit 0fe84ba

Please sign in to comment.