CMS 3D CMS Logo

CaloTowerFromL1TCreatorForTauHLT.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 
21  : mBX(p.getParameter<int>("BX")),
22  mVerbose(p.getUntrackedParameter<int>("verbose", 0)),
23  mtowers_token(consumes<CaloTowerCollection>(p.getParameter<InputTag>("towers"))),
24  mCone(p.getParameter<double>("UseTowersInCone")),
25  mCone2(mCone * mCone),
26  mTauTrigger_token(consumes<l1t::TauBxCollection>(p.getParameter<InputTag>("TauTrigger"))),
27  mEtThreshold(p.getParameter<double>("minimumEt")),
28  mEThreshold(p.getParameter<double>("minimumE")),
29  mTauId(p.getParameter<int>("TauId")) {
30  produces<CaloTowerCollection>();
31 }
32 
36 
37  // imitate L1 seeds
39  evt.getByToken(mTauTrigger_token, jetsgen);
40 
41  std::unique_ptr<CaloTowerCollection> cands(new CaloTowerCollection);
42  cands->reserve(caloTowers->size());
43 
44  if (mCone < 0.) {
45  evt.put(std::move(cands));
46  return;
47  }
48 
49  int idTau = 0;
50  if (jetsgen.isValid()) {
51  for (auto myL1Jet = jetsgen->begin(mBX); myL1Jet != jetsgen->end(mBX); myL1Jet++) {
52  if (idTau == mTauId) {
53  unsigned idx = 0;
54  for (; idx < caloTowers->size(); idx++) {
55  const CaloTower* cal = &((*caloTowers)[idx]);
56  bool isAccepted = false;
57  if (mVerbose == 2) {
58  edm::LogInfo("JetDebugInfo") << "CaloTowerFromL1TCreatorForTauHLT::produce-> " << idx
59  << " tower et/eta/phi/e: " << cal->et() << '/' << cal->eta() << '/'
60  << cal->phi() << '/' << cal->energy() << " is...";
61  }
62  if (cal->et() >= mEtThreshold && cal->energy() >= mEThreshold) {
63  math::PtEtaPhiELorentzVector p(cal->et(), cal->eta(), cal->phi(), cal->energy());
64  double delta2 = ROOT::Math::VectorUtil::DeltaR2((*myL1Jet).p4().Vect(), p);
65  if (delta2 < mCone2) {
66  isAccepted = true;
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  } else {
81  edm::LogWarning("MissingProduct") << "L1Upgrade jet bx collection not found." << std::endl;
82  }
83 
84  evt.put(std::move(cands));
85 }
86 
89 
90  aDesc.add<edm::InputTag>("TauTrigger", edm::InputTag("caloStage2Digis"))->setComment("L1 Tau collection for seeding");
91  aDesc.add<edm::InputTag>("towers", edm::InputTag("towerMaker"))->setComment("Input tower collection");
92  aDesc.add<int>("TauId", 0)->setComment("Item from L1 Tau collection used for seeding. From 0 to 11");
93  aDesc.add<double>("UseTowersInCone", 0.8)->setComment("Radius of cone around seed");
94  aDesc.add<double>("minimumE", 0.8)->setComment("Minimum tower energy");
95  aDesc.add<double>("minimumEt", 0.5)->setComment("Minimum tower ET");
96  aDesc.add<int>("BX", 0)->setComment("Set bunch crossing; 0 = in time, -1 = previous, 1 = following");
97  aDesc.addUntracked<int>("verbose", 0)->setComment("Verbosity level; 0=silent");
98 
99  desc.add("CaloTowerFromL1TCreatorForTauHLT", aDesc);
100  desc.setComment("Produce tower collection around L1 particle seed.");
101 }
102 
void setComment(std::string const &value)
void produce(edm::StreamID sid, edm::Event &evt, const edm::EventSetup &stp) const override
process one event
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:528
delete x;
Definition: CaloConfig.h:22
BXVector< Tau > TauBxCollection
Definition: Tau.h:10
const_iterator begin(int bx) const
double et(double vtxZ) const
Definition: CaloTower.h:150
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
const edm::EDGetTokenT< l1t::TauBxCollection > mTauTrigger_token
label of tau trigger type analysis
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Log< level::Info, false > LogInfo
PtEtaPhiELorentzVectorD PtEtaPhiELorentzVector
Lorentz vector with cartesian internal representation.
Definition: LorentzVector.h:27
CaloTowerFromL1TCreatorForTauHLT(const edm::ParameterSet &)
constructor from parameter set
bool isValid() const
Definition: HandleBase.h:70
const_iterator end(int bx) const
fixed size matrix
HLT enums.
static void fillDescriptions(edm::ConfigurationDescriptions &desc)
Log< level::Warning, false > LogWarning
const edm::EDGetTokenT< CaloTowerCollection > mtowers_token
label of source collection
double phi() const final
momentum azimuthal angle
const double mCone
use only towers in cone mCone around L1 candidate for regional jet reco
def move(src, dest)
Definition: eostools.py:511
double energy() const final
energy
double eta() const final
momentum pseudorapidity