Skip to content

Commit

Permalink
Removing extra comments for review
Browse files Browse the repository at this point in the history
  • Loading branch information
rappoccio committed Nov 26, 2018
1 parent da7f10c commit 60bde88
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions RecoJets/JetProducers/plugins/BetaStarVarProducer.cc
Expand Up @@ -21,10 +21,8 @@
//


// system include files
#include <memory>

// user include files
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/global/EDProducer.h"

Expand All @@ -42,10 +40,6 @@

#include "PhysicsTools/NanoAOD/interface/MatchingUtils.h"

//
// class declaration
//

template <typename T>
class BetaStarVarProducer : public edm::global::EDProducer<> {
public:
Expand All @@ -66,27 +60,11 @@ class BetaStarVarProducer : public edm::global::EDProducer<> {

std::tuple<float,float> calculateCHSEnergies( edm::Ptr<pat::Jet> const & jet, edm::View<T> const & cands) const;

// ----------member data ---------------------------

edm::EDGetTokenT<edm::View<pat::Jet>> srcJet_;
edm::EDGetTokenT<edm::View<T>> srcPF_;
double maxDR_;
};

//
// constants, enums and typedefs
//


//
// static data member definitions
//

//
// member functions
//

// ------------ method called to produce the data ------------
template <typename T>
void
BetaStarVarProducer<T>::produce(edm::StreamID streamID, edm::Event& iEvent, const edm::EventSetup& iSetup) const
Expand Down Expand Up @@ -176,7 +154,6 @@ BetaStarVarProducer<T>::calculateCHSEnergies( edm::Ptr<pat::Jet> const & ijet, e
return std::tuple<float,float>(puf,chf);
}

// ------------ method fills 'descriptions' with the allowed parameters for the module ------------
template <typename T>
void
BetaStarVarProducer<T>::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
Expand All @@ -190,6 +167,5 @@ BetaStarVarProducer<T>::fillDescriptions(edm::ConfigurationDescriptions& descrip

typedef BetaStarVarProducer<pat::PackedCandidate> BetaStarPackedCandidateVarProducer;

//define this as a plug-in
DEFINE_FWK_MODULE(BetaStarPackedCandidateVarProducer);

0 comments on commit 60bde88

Please sign in to comment.