Skip to content

Commit

Permalink
updating Hbb filter description
Browse files Browse the repository at this point in the history
  • Loading branch information
Javier committed May 29, 2015
1 parent fe4d8f2 commit c81c6ea
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
6 changes: 3 additions & 3 deletions HLTrigger/JetMET/interface/HLTJetHbbFilter.h
Expand Up @@ -4,7 +4,7 @@
/** \class HLTJetHbbFilter
*
*
* This class, based on HLTJetSortedVBFFilter is an HLTFilter (-> EDFilter)
* This class is an HLTFilter (-> EDFilter)
* implementing a two b-jet invariant mass requirement
* Based on HLTJetSortedVBFFilter
*
Expand All @@ -18,8 +18,8 @@
#include "DataFormats/BTauReco/interface/JetTag.h"
#include "DataFormats/HLTReco/interface/TriggerFilterObjectWithRefs.h"
#include "HLTrigger/HLTcore/interface/HLTFilter.h"
#include<string>
#include<vector>
#include <string>
#include <vector>
#include "DataFormats/Common/interface/RefToBase.h"
#include "DataFormats/Common/interface/Handle.h"
namespace edm {
Expand Down
14 changes: 6 additions & 8 deletions HLTrigger/JetMET/src/HLTJetHbbFilter.cc
Expand Up @@ -6,20 +6,18 @@
*
*/

#include <vector>
#include <string>

#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
#include "FWCore/ParameterSet/interface/ParameterSetDescription.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "DataFormats/Common/interface/Handle.h"
#include "DataFormats/Math/interface/deltaPhi.h"
#include "DataFormats/Math/interface/deltaR.h"
#include "DataFormats/Common/interface/RefToBase.h"
#include "HLTrigger/JetMET/interface/HLTJetHbbFilter.h"

#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
#include "FWCore/ParameterSet/interface/ParameterSetDescription.h"

#include<vector>
#include<string>
#include<typeinfo>
#include "HLTrigger/HLTcore/interface/defaultModuleLabel.h"

using namespace std;
//
Expand Down Expand Up @@ -72,7 +70,7 @@ HLTJetHbbFilter<T>::fillDescriptions(edm::ConfigurationDescriptions& description
desc.add<double>("minTag2",0.4);
desc.add<double>("maxTag",9999.0);
desc.add<int>("triggerType",trigger::TriggerJet);
descriptions.add(string("hlt")+string(typeid(HLTJetHbbFilter<T>).name()),desc);
descriptions.add(defaultModuleLabel<HLTJetHbbFilter<T>>(), desc);
}

template<typename T> float HLTJetHbbFilter<T>::findCSV(const typename std::vector<T>::const_iterator & jet, const reco::JetTagCollection & jetTags){
Expand Down

0 comments on commit c81c6ea

Please sign in to comment.