CMS 3D CMS Logo

CaloTowerCreatorForTauHLT.cc
Go to the documentation of this file.
1 // makes CaloTowerCandidates from CaloTowers
2 // original author: L.Lista INFN, modifyed by: F.Ratnikov UMd
3 // Author for regionality A. Nikitenko
4 // Modified by S. Gennai
5 
12 // Math
13 #include "Math/GenVector/VectorUtil.h"
14 #include <cmath>
15 
16 using namespace edm;
17 using namespace reco;
18 using namespace std;
19 using namespace l1extra;
20 
22  : mVerbose(p.getUntrackedParameter<int>("verbose", 0)),
23  mtowers_token(consumes<CaloTowerCollection>(p.getParameter<InputTag>("towers"))),
24  mCone(p.getParameter<double>("UseTowersInCone")),
25  mTauTrigger_token(consumes<L1JetParticleCollection>(p.getParameter<InputTag>("TauTrigger"))),
26  mEtThreshold(p.getParameter<double>("minimumEt")),
27  mEThreshold(p.getParameter<double>("minimumE")),
28  mTauId(p.getParameter<int>("TauId")) {
29  produces<CaloTowerCollection>();
30 }
31 
33 
37 
38  // imitate L1 seeds
40  evt.getByToken(mTauTrigger_token, jetsgen);
41 
42  std::unique_ptr<CaloTowerCollection> cands(new CaloTowerCollection);
43  cands->reserve(caloTowers->size());
44 
45  int idTau = 0;
46  L1JetParticleCollection::const_iterator myL1Jet = jetsgen->begin();
47  for (; myL1Jet != jetsgen->end(); myL1Jet++) {
48  if (idTau == mTauId) {
49  double Sum08 = 0.;
50 
51  unsigned idx = 0;
52  for (; idx < caloTowers->size(); idx++) {
53  const CaloTower* cal = &((*caloTowers)[idx]);
54  bool isAccepted = false;
55  if (mVerbose == 2) {
56  edm::LogInfo("JetDebugInfo") << "CaloTowerCreatorForTauHLT::produce-> " << idx
57  << " tower et/eta/phi/e: " << cal->et() << '/' << cal->eta() << '/' << cal->phi()
58  << '/' << cal->energy() << " is...";
59  }
60  if (cal->et() >= mEtThreshold && cal->energy() >= mEThreshold) {
61  math::PtEtaPhiELorentzVector p(cal->et(), cal->eta(), cal->phi(), cal->energy());
62  double delta = ROOT::Math::VectorUtil::DeltaR((*myL1Jet).p4().Vect(), p);
63 
64  if (delta < mCone) {
65  isAccepted = true;
66  Sum08 += cal->et();
67  cands->push_back(*cal);
68  }
69  }
70  if (mVerbose == 2) {
71  if (isAccepted)
72  edm::LogInfo("JetDebugInfo") << "accepted \n";
73  else
74  edm::LogInfo("JetDebugInfo") << "rejected \n";
75  }
76  }
77  }
78  idTau++;
79  }
80 
81  evt.put(std::move(cands));
82 }
83 
86  aDesc.add<edm::InputTag>("TauTrigger", edm::InputTag("l1extraParticles", "Tau"))
87  ->setComment("L1ExtraJet collection for seeding");
88  aDesc.add<int>("TauId", 0)->setComment("Item from L1ExtraJet collection used for seeding");
89  aDesc.add<edm::InputTag>("towers", edm::InputTag("towerMaker"))->setComment("Input tower collection");
90  aDesc.add<double>("UseTowersInCone", 0.8)->setComment("Radius of cone around seed");
91  aDesc.add<double>("minimumE", 0.8)->setComment("Minimum tower energy");
92  aDesc.add<double>("minimumEt", 0.5)->setComment("Minimum tower ET");
93  aDesc.addUntracked<int>("verbose", 0)->setComment("Verbosity level; 0=silent");
94  desc.setComment("Produce tower collection around L1ExtraJetParticle seed.");
95  desc.add("caloTowerMakerHLT", aDesc);
96 }
CaloTowerCreatorForTauHLT::mVerbose
const int mVerbose
verbosity
Definition: CaloTowerCreatorForTauHLT.h:46
edm::StreamID
Definition: StreamID.h:30
CaloTowerCreatorForTauHLT::mCone
const double mCone
use only towers in cone mCone around L1 candidate for regional jet reco
Definition: CaloTowerCreatorForTauHLT.h:50
Handle.h
CaloTowerCreatorForTauHLT::mEtThreshold
const double mEtThreshold
imitator of L1 seeds
Definition: CaloTowerCreatorForTauHLT.h:56
L1JetParticleCollection
edm::ParameterSetDescription::add
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Definition: ParameterSetDescription.h:95
MessageLogger.h
CaloTowerCreatorForTauHLT::mTauTrigger_token
const edm::EDGetTokenT< l1extra::L1JetParticleCollection > mTauTrigger_token
label of tau trigger type analysis
Definition: CaloTowerCreatorForTauHLT.h:52
edm
HLT enums.
Definition: AlignableModifier.h:19
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89301
CaloTowerCreatorForTauHLT::~CaloTowerCreatorForTauHLT
~CaloTowerCreatorForTauHLT() override
destructor
Definition: CaloTowerCreatorForTauHLT.cc:32
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
math::PtEtaPhiELorentzVector
PtEtaPhiELorentzVectorD PtEtaPhiELorentzVector
Lorentz vector with cartesian internal representation.
Definition: LorentzVector.h:27
edm::SortedCollection< CaloTower >
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:46
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
edm::Handle
Definition: AssociativeIterator.h:50
CaloTowerCreatorForTauHLT::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &desc)
Definition: CaloTowerCreatorForTauHLT.cc:84
CaloTowerCreatorForTauHLT.h
heavyIonCSV_trainingSettings.idx
idx
Definition: heavyIonCSV_trainingSettings.py:5
CaloTowerCreatorForTauHLT::mEThreshold
const double mEThreshold
E threshold.
Definition: CaloTowerCreatorForTauHLT.h:58
edm::Event::getByToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
CaloTowerCreatorForTauHLT::mTauId
const int mTauId
Definition: CaloTowerCreatorForTauHLT.h:60
HLT_FULL_cff.cands
cands
Definition: HLT_FULL_cff.py:15161
edm::ParameterSetDescription::addUntracked
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
Definition: ParameterSetDescription.h:100
edm::ParameterSet
Definition: ParameterSet.h:47
AlCaHLTBitMon_ParallelJobs.p
def p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
Event.h
reco::LeafCandidate::eta
double eta() const final
momentum pseudorapidity
Definition: LeafCandidate.h:152
CaloTowerCreatorForTauHLT::produce
void produce(edm::StreamID sid, edm::Event &evt, const edm::EventSetup &stp) const override
process one event
Definition: CaloTowerCreatorForTauHLT.cc:34
eleHcalExtractorBlocks_cff.caloTowers
caloTowers
Definition: eleHcalExtractorBlocks_cff.py:15
dumpMFGeometry_cfg.delta
delta
Definition: dumpMFGeometry_cfg.py:25
createfilelist.int
int
Definition: createfilelist.py:10
CaloTower
Definition: CaloTower.h:26
edm::Event::put
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
CaloTower::et
double et(double vtxZ) const
Definition: CaloTower.h:150
edm::EventSetup
Definition: EventSetup.h:58
electronAnalyzer_cfi.DeltaR
DeltaR
Definition: electronAnalyzer_cfi.py:33
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
reco::LeafCandidate::phi
double phi() const final
momentum azimuthal angle
Definition: LeafCandidate.h:148
reco::LeafCandidate::energy
double energy() const final
energy
Definition: LeafCandidate.h:125
ParameterSet.h
edm::ParameterDescriptionNode::setComment
void setComment(std::string const &value)
Definition: ParameterDescriptionNode.cc:106
CaloTowerCreatorForTauHLT::CaloTowerCreatorForTauHLT
CaloTowerCreatorForTauHLT(const edm::ParameterSet &)
constructor from parameter set
Definition: CaloTowerCreatorForTauHLT.cc:21
RecoCaloTowerCandidate.h
l1extra
Definition: L1EmParticle.h:26
CaloTowerCreatorForTauHLT::mtowers_token
const edm::EDGetTokenT< CaloTowerCollection > mtowers_token
label of source collection
Definition: CaloTowerCreatorForTauHLT.h:48
edm::Event
Definition: Event.h:73
edm::InputTag
Definition: InputTag.h:15
cmsswSequenceInfo.stp
stp
Definition: cmsswSequenceInfo.py:18