CMS 3D CMS Logo

CaloTowerCandidateCreator.cc
Go to the documentation of this file.
1 // makes CaloTowerCandidates from CaloTowers
2 // original author: L.Lista INFN
3 // modifyed by: F.Ratnikov UMd
4 #include <cmath>
10 using namespace edm;
11 using namespace reco;
12 using namespace std;
13 
15  : mVerbose(p.getUntrackedParameter<int>("verbose", 0)),
16  mEtThreshold(p.getParameter<double>("minimumEt")),
17  mEThreshold(p.getParameter<double>("minimumE")) {
18  tok_src_ = consumes<CaloTowerCollection>(p.getParameter<edm::InputTag>("src"));
19 
20  produces<CandidateCollection>();
21 }
22 
24 
28 
29  auto cands = std::make_unique<CandidateCollection>();
30  cands->reserve(caloTowers->size());
31  unsigned idx = 0;
32  for (; idx < caloTowers->size(); idx++) {
33  const CaloTower* cal = &((*caloTowers)[idx]);
34  if (mVerbose >= 2) {
35  std::cout << "CaloTowerCandidateCreator::produce-> " << idx << " tower et/eta/phi/e: " << cal->et() << '/'
36  << cal->eta() << '/' << cal->phi() << '/' << cal->energy() << " is...";
37  }
38  if (cal->et() >= mEtThreshold && cal->energy() >= mEThreshold) {
39  math::PtEtaPhiMLorentzVector p(cal->et(), cal->eta(), cal->phi(), 0);
41  c->setCaloTower(CaloTowerRef(caloTowers, idx));
42  cands->push_back(c);
43  if (mVerbose >= 2)
44  std::cout << "accepted: pT/eta/phi:" << c->pt() << '/' << c->eta() << '/' << c->phi() << std::endl;
45  } else {
46  if (mVerbose >= 2)
47  std::cout << "rejected" << std::endl;
48  }
49  }
50  if (mVerbose >= 1) {
51  std::cout << "CaloTowerCandidateCreator::produce-> " << cands->size() << " candidates created" << std::endl;
52  }
53  evt.put(std::move(cands));
54 }
Handle.h
edm
HLT enums.
Definition: AlignableModifier.h:19
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
gather_cfg.cout
cout
Definition: gather_cfg.py:144
reco::RecoCaloTowerCandidate
Definition: RecoCaloTowerCandidate.h:15
CaloTowerCandidateCreator::mEtThreshold
double mEtThreshold
ET threshold.
Definition: CaloTowerCandidateCreator.h:35
CaloTowerCandidateCreator::produce
void produce(edm::Event &e, const edm::EventSetup &) override
process one event
Definition: CaloTowerCandidateCreator.cc:25
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
edm::Handle
Definition: AssociativeIterator.h:50
heavyIonCSV_trainingSettings.idx
idx
Definition: heavyIonCSV_trainingSettings.py:5
CaloTowerCandidateCreator::~CaloTowerCandidateCreator
~CaloTowerCandidateCreator() override
destructor
Definition: CaloTowerCandidateCreator.cc:23
CaloTowerCandidateCreator::CaloTowerCandidateCreator
CaloTowerCandidateCreator(const edm::ParameterSet &)
constructor from parameter set
Definition: CaloTowerCandidateCreator.cc:14
edm::Event::getByToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:531
CaloTowerCandidateCreator.h
CaloTowerCandidateCreator::mVerbose
int mVerbose
verbosity
Definition: CaloTowerCandidateCreator.h:31
HLT_FULL_cff.cands
cands
Definition: HLT_FULL_cff.py:15142
edm::ParameterSet
Definition: ParameterSet.h:47
Event.h
reco::LeafCandidate::eta
double eta() const final
momentum pseudorapidity
Definition: LeafCandidate.h:152
eleHcalExtractorBlocks_cff.caloTowers
caloTowers
Definition: eleHcalExtractorBlocks_cff.py:15
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:57
HltBtagPostValidation_cff.c
c
Definition: HltBtagPostValidation_cff.py:31
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
CaloTowerRef
edm::Ref< CaloTowerCollection > CaloTowerRef
Definition: CaloTowerDefs.h:17
reco::LeafCandidate::energy
double energy() const final
energy
Definition: LeafCandidate.h:125
CaloTowerCandidateCreator::mEThreshold
double mEThreshold
E threshold.
Definition: CaloTowerCandidateCreator.h:37
math::PtEtaPhiMLorentzVector
PtEtaPhiMLorentzVectorD PtEtaPhiMLorentzVector
Lorentz vector with cartesian internal representation.
Definition: LorentzVector.h:25
ParameterSet.h
RecoCaloTowerCandidate.h
reco::Candidate::LorentzVector
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:36
edm::Event
Definition: Event.h:73
edm::InputTag
Definition: InputTag.h:15
CaloTowerCandidateCreator::tok_src_
edm::EDGetTokenT< CaloTowerCollection > tok_src_
token of source collection
Definition: CaloTowerCandidateCreator.h:33