CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
SelectReplacementCandidates Class Reference

#include <SelectReplacementCandidates.h>

Inheritance diagram for SelectReplacementCandidates:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

virtual void beginJob ()
 
virtual void endJob ()
 
virtual void produce (edm::Event &iEvent, const edm::EventSetup &iConfig)
 
 SelectReplacementCandidates (const edm::ParameterSet &iSetup)
 
 ~SelectReplacementCandidates ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

int determineMuonsToUse (const edm::Event &iEvent, const edm::EventSetup &iConfig, reco::Muon *muon1, reco::Muon *muon2)
 
int determineMuonsToUse_old (const edm::Event &iEvent, const edm::EventSetup &iConfig, reco::Muon *muon1, reco::Muon *muon2)
 
void getRawIDsAdvanced (const edm::Event &iEvent, const edm::EventSetup &iConfig, std::vector< uint32_t > *L, reco::Muon *muon, bool includeHCAL)
 
template<typename T >
void ProductNotFound (const edm::Event &iEvent, edm::InputTag inputTag)
 
void transformMuMu2TauTau (reco::Muon *muon1, reco::Muon *muon2)
 transform muon into tau More...
 

Private Attributes

edm::InputTag muonInputTag_
 
TrackAssociatorParameters parameters_
 
double targetParticleMass_
 
int targetParticlePdgID_
 
TrackDetectorAssociator trackAssociator_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 26 of file SelectReplacementCandidates.h.

Constructor & Destructor Documentation

SelectReplacementCandidates::SelectReplacementCandidates ( const edm::ParameterSet iSetup)

Definition at line 4 of file SelectReplacementCandidates.cc.

References edm::EDConsumerBase::consumesCollector(), edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), TrackAssociatorParameters::loadParameters(), muonInputTag_, Parameters::parameters, parameters_, targetParticleMass_, targetParticlePdgID_, trackAssociator_, and TrackDetectorAssociator::useDefaultPropagator().

5 {
6  using namespace edm;
7  using namespace std;
8  produces< vector<uint32_t> >();
9  produces< vector<uint32_t> >("assocHitsWithHCAL");
10  produces< std::vector<reco::Muon> >();
11 
12  targetParticleMass_=iConfig.getUntrackedParameter<double>("targetParticlesMass",1.77690);
13  targetParticlePdgID_=iConfig.getUntrackedParameter<int>("targetParticlesPdgID",15);
14 
15  muonInputTag_ = iConfig.getParameter<edm::InputTag>("muonInputTag");
16  edm::ParameterSet parameters = iConfig.getParameter<edm::ParameterSet>("TrackAssociatorParameters");
19 
21 }
dictionary parameters
Definition: Parameters.py:2
TrackDetectorAssociator trackAssociator_
void useDefaultPropagator()
use the default propagator
void loadParameters(const edm::ParameterSet &, edm::ConsumesCollector &)
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
TrackAssociatorParameters parameters_
SelectReplacementCandidates::~SelectReplacementCandidates ( )

Definition at line 23 of file SelectReplacementCandidates.cc.

24 {
25 
26 }

Member Function Documentation

void SelectReplacementCandidates::beginJob ( void  )
virtual

Reimplemented from edm::EDProducer.

Definition at line 61 of file SelectReplacementCandidates.cc.

62 {
63 
64 }
int SelectReplacementCandidates::determineMuonsToUse ( const edm::Event iEvent,
const edm::EventSetup iConfig,
reco::Muon muon1,
reco::Muon muon2 
)
private

Definition at line 72 of file SelectReplacementCandidates.cc.

References gather_cfg::cout, deltaR(), edm::Event::getByLabel(), edm::Event::getManyByType(), i, muonInputTag_, patZpeak::muons, p4, dt_dqm_sourceclient_common_cff::reco, edm::View< T >::size(), HLT_50ns_5e33_v1_cff::trackCollection, and detailsBasic3DVector::z.

Referenced by produce().

73 {
74  using namespace edm;
75  using namespace reco;
76  using namespace std;
77 
79  if (!iEvent.getByLabel("dimuonsGlobal", zCandidate_handle))
80  {
81  std::cout << "Could not find product: " << "dimuonsGlobal" << "\n";
82  std::vector< edm::Handle< edm::RefToBaseVector<reco::Candidate> > > allHandles;
83  iEvent.getManyByType(allHandles);
84  std::vector< edm::Handle< edm::RefToBaseVector<reco::Candidate> > >::iterator it;
85  for (it = allHandles.begin(); it != allHandles.end(); it++)
86  {
87  std::cout << "available product: " << (*it).provenance()->moduleLabel() << ", " << (*it).provenance()->productInstanceName() << ", " << (*it).provenance()->processName();
88  }
89 
90  std::cout << "Objekt nicht gefunden: dimuonsGloal\n";
91  return -1;
92  }
93 // std::cout << zCandidate_handle->size() << " Kandidaten gefunden!\n";
94 
95  unsigned int nMuons = zCandidate_handle->size();
96  if (nMuons==0)
97  return -1;
98 
99  for (edm::RefToBaseVector<reco::Candidate>::const_iterator z = zCandidate_handle->begin(); z!=zCandidate_handle->end(); ++z)
100  {
101  reco::Particle::LorentzVector muon1p4 = z->get()->daughter(0)->p4();
102  reco::Particle::LorentzVector muon2p4 = z->get()->daughter(1)->p4();
103 
105  iEvent.getByLabel(muonInputTag_, trackCollection);
107 
108  bool found1=false, found2=false;
109  for (unsigned int i=0;i<muons.size() && !(found1 && found2);i++)
110  {
111  if (deltaR(muon1p4,muons[i].p4())<0.1)
112  {
113  *muon1 = muons[i];
114  found1=true;
115  }
116  if (deltaR(muon2p4,muons[i].p4())<0.1)
117  {
118  *muon2 = muons[i];
119  found2=true;
120  }
121  }
122 
123  break;
124  }
125  return 0;
126 }
void getManyByType(std::vector< Handle< PROD > > &results) const
Definition: Event.h:439
int i
Definition: DBlmapReader.cc:9
size_type size() const
float float float z
double p4[4]
Definition: TauolaWrapper.h:92
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:405
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
tuple muons
Definition: patZpeak.py:38
tuple cout
Definition: gather_cfg.py:121
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:21
int SelectReplacementCandidates::determineMuonsToUse_old ( const edm::Event iEvent,
const edm::EventSetup iConfig,
reco::Muon muon1,
reco::Muon muon2 
)
private

Definition at line 129 of file SelectReplacementCandidates.cc.

References gather_cfg::cout, edm::Event::getByLabel(), muonInputTag_, patZpeak::muons, dt_dqm_sourceclient_common_cff::reco, and HLT_50ns_5e33_v1_cff::trackCollection.

130 {
131  using namespace edm;
132  using namespace reco;
133  using namespace std;
134 
135  Handle<MuonCollection> muonHandle;
136  if (!iEvent.getByLabel(muonInputTag_,muonHandle))
137  ProductNotFound<reco::MuonCollection>(iEvent, muonInputTag_);
138 
142 
143  unsigned int nMuons = muons.size();
144  if (nMuons<2)
145  return -1;
146 
147  *muon1 = muons[0];
148  *muon2 = muons[1];
149  std::cout << muons[0].p4() << "\n";
150  std::cout << muons[1].p4() << "\n";
151 
152  return 0;
153 }
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:405
tuple muons
Definition: patZpeak.py:38
tuple cout
Definition: gather_cfg.py:121
void SelectReplacementCandidates::endJob ( void  )
virtual

Reimplemented from edm::EDProducer.

Definition at line 66 of file SelectReplacementCandidates.cc.

67 {
68 
69 }
void SelectReplacementCandidates::getRawIDsAdvanced ( const edm::Event iEvent,
const edm::EventSetup iConfig,
std::vector< uint32_t > *  L,
reco::Muon muon,
bool  includeHCAL 
)
private

Definition at line 155 of file SelectReplacementCandidates.cc.

References TrackDetectorAssociator::associate(), reco::Muon::bestTrackRef(), gather_cfg::cout, TrackDetMatchInfo::ecalRecHits, edm::RefToBase< T >::get(), TrackDetMatchInfo::hcalRecHits, i, info(), edm::RefToBase< T >::isNonnull(), parameters_, dt_dqm_sourceclient_common_cff::reco, and trackAssociator_.

Referenced by produce().

156 {
157  using namespace edm;
158  using namespace reco;
159  using namespace std;
160 
161  if (muon->bestTrackRef().isNonnull())
162  {
163  TrackDetMatchInfo info = trackAssociator_.associate(iEvent, iConfig, *(muon->bestTrackRef().get()), parameters_);
164  if (includeHCAL)
165  {
166  for(std::vector<const EcalRecHit*>::const_iterator hit = info.ecalRecHits.begin(); hit != info.ecalRecHits.end(); ++hit)
167  L->push_back((*hit)->detid().rawId());
168 
169  for(std::vector<const HBHERecHit*>::const_iterator hit = info.hcalRecHits.begin(); hit != info.hcalRecHits.end(); ++hit)
170  L->push_back((*hit)->detid().rawId());
171  }
172  int recs = (muon->bestTrackRef().get())->recHitsSize();
173  for (int i=0; i<recs; i++)
174  L->push_back(((muon->bestTrackRef().get())->recHit(i).get())->geographicalId().rawId());
175  }
176  else
177  std::cout << "ERROR: Muon has no bestTrackRef!!\n";
178 
179  std::cout << " with " << L->size() << " muon hits found\n";
180 // return L;
181 }
value_type const * get() const
Definition: RefToBase.h:212
int i
Definition: DBlmapReader.cc:9
static const TGPicture * info(bool iBackgroundIsBlack)
TrackDetectorAssociator trackAssociator_
std::vector< const EcalRecHit * > ecalRecHits
hits in the cone
bool isNonnull() const
Checks for non-null.
Definition: RefToBase.h:279
std::vector< const HBHERecHit * > hcalRecHits
TrackDetMatchInfo associate(const edm::Event &, const edm::EventSetup &, const FreeTrajectoryState &, const AssociatorParameters &)
tuple cout
Definition: gather_cfg.py:121
TrackAssociatorParameters parameters_
virtual TrackBaseRef bestTrackRef() const
best track RefToBase
Definition: Muon.h:62
void SelectReplacementCandidates::produce ( edm::Event iEvent,
const edm::EventSetup iConfig 
)
virtual

Implements edm::EDProducer.

Definition at line 28 of file SelectReplacementCandidates.cc.

References gather_cfg::cout, determineMuonsToUse(), getRawIDsAdvanced(), patZpeak::muons, edm::Event::put(), and transformMuMu2TauTau().

29 {
30  using namespace std;
31  using namespace edm;
32  reco::Muon muon1, muon2;
33 
34  // determine the muons to be used
35  // these can be reconstructed muons or muons from a HepMC::Event
36  if (determineMuonsToUse(iEvent, iSetup, &muon1, &muon2)!=0)
37  return;
38 
39  vector<uint32_t> hits ;
40  getRawIDsAdvanced(iEvent, iSetup, &hits, &muon1, false);
41  getRawIDsAdvanced(iEvent, iSetup, &hits, &muon2, false);
42  std::auto_ptr< vector<uint32_t> > selectedHitsAutoPtr(new vector<uint32_t>(hits) );
43  iEvent.put( selectedHitsAutoPtr );
44 
45  vector<uint32_t> assoc_hits_withHCAL;
46  getRawIDsAdvanced(iEvent, iSetup, &assoc_hits_withHCAL, &muon1, true);
47  getRawIDsAdvanced(iEvent, iSetup, &assoc_hits_withHCAL, &muon2, true);
48  std::cout << "found in total " << assoc_hits_withHCAL.size() << " cells with associated hits with hcal\n";
49  std::auto_ptr< vector<uint32_t> > selectedAssocHitsWithHCALAutoPtr(new vector<uint32_t>(assoc_hits_withHCAL) );
50  iEvent.put( selectedAssocHitsWithHCALAutoPtr, "assocHitsWithHCAL");
51 
52  std::vector<reco::Muon> muons;
53  transformMuMu2TauTau(&muon1, &muon2);
54  muons.push_back(muon1);
55  muons.push_back(muon2);
56  std::auto_ptr< std::vector<reco::Muon> > selectedMuonsPtr(new std::vector<reco::Muon>(muons) );
57  iEvent.put( selectedMuonsPtr );
58 
59 }
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:113
int determineMuonsToUse(const edm::Event &iEvent, const edm::EventSetup &iConfig, reco::Muon *muon1, reco::Muon *muon2)
void getRawIDsAdvanced(const edm::Event &iEvent, const edm::EventSetup &iConfig, std::vector< uint32_t > *L, reco::Muon *muon, bool includeHCAL)
void transformMuMu2TauTau(reco::Muon *muon1, reco::Muon *muon2)
transform muon into tau
tuple muons
Definition: patZpeak.py:38
tuple cout
Definition: gather_cfg.py:121
template<typename T >
void SelectReplacementCandidates::ProductNotFound ( const edm::Event iEvent,
edm::InputTag  inputTag 
)
private

Definition at line 184 of file SelectReplacementCandidates.cc.

References gather_cfg::cout, and edm::Event::getManyByType().

185 {
186  std::cout << "--- TauHitSelector ------------------------------------\n";
187  std::cout << "Could not find product with:\n"<< inputTag << "\n";
188  std::vector< edm::Handle< T > > allHandles;
189  iEvent.getManyByType(allHandles);
190  typename std::vector< edm::Handle< T > >::iterator it;
191  for (it = allHandles.begin(); it != allHandles.end(); it++)
192  {
193  std::cout << "module label: " << (*it).provenance()->moduleLabel() << "\n";
194  std::cout << "productInstanceName: " << (*it).provenance()->productInstanceName() << "\n";
195  std::cout << "processName: " << (*it).provenance()->processName() << "\n\n";
196  }
197  std::cout << "-------------------------------------------------------\n";
198  return;
199 }
void getManyByType(std::vector< Handle< PROD > > &results) const
Definition: Event.h:439
tuple cout
Definition: gather_cfg.py:121
void SelectReplacementCandidates::transformMuMu2TauTau ( reco::Muon muon1,
reco::Muon muon2 
)
private

transform muon into tau

Definition at line 203 of file SelectReplacementCandidates.cc.

References funct::abs(), assert(), reco::LeafCandidate::p4(), reco::LeafCandidate::pdgId(), EnergyCorrector::pt, dt_dqm_sourceclient_common_cff::reco, reco::LeafCandidate::setP4(), reco::LeafCandidate::setPdgId(), reco::LeafCandidate::setStatus(), mathSSE::sqrt(), targetParticleMass_, and targetParticlePdgID_.

Referenced by produce().

204 {
205  using namespace edm;
206  using namespace reco;
207  using namespace std;
208 
209  reco::Particle::LorentzVector muon1_momentum = muon1->p4();
210  reco::Particle::LorentzVector muon2_momentum = muon2->p4();
211  reco::Particle::LorentzVector z_momentum = muon1_momentum + muon2_momentum;
212 
213  ROOT::Math::Boost booster(z_momentum.BoostToCM());
214  ROOT::Math::Boost invbooster(booster.Inverse());
215 
216  reco::Particle::LorentzVector Zb = booster(z_momentum);
217 
218  reco::Particle::LorentzVector muon1b = booster(muon1_momentum);
219  reco::Particle::LorentzVector muon2b = booster(muon2_momentum);
220 
221  double tau_mass2 = targetParticleMass_*targetParticleMass_;
222 
223  double muonxb_mom2 = muon1b.x()*muon1b.x() + muon1b.y()*muon1b.y() + muon1b.z() * muon1b.z();
224  double tauxb_mom2 = 0.25 * Zb.t() * Zb.t() - tau_mass2;
225 
226  float scaling1 = sqrt(tauxb_mom2 / muonxb_mom2);
227  float scaling2 = scaling1;
228 
229  float tauEnergy= Zb.t() / 2.;
230 
231  if (tauEnergy*tauEnergy<tau_mass2)
232  return;
233 
234  reco::Particle::LorentzVector tau1b_mom = reco::Particle::LorentzVector(scaling1*muon1b.x(),scaling1*muon1b.y(),scaling1*muon1b.z(),tauEnergy);
235  reco::Particle::LorentzVector tau2b_mom = reco::Particle::LorentzVector(scaling2*muon2b.x(),scaling2*muon2b.y(),scaling2*muon2b.z(),tauEnergy);
236 
237  // some checks
238  // the following test guarantees a deviation
239  // of less than 0.1% for phi and theta for the
240  // original muons and the placed taus
241  // (in the centre-of-mass system of the z boson)
242  assert((muon1b.phi()-tau1b_mom.phi())/muon1b.phi()<0.001);
243  assert((muon2b.phi()-tau2b_mom.phi())/muon2b.phi()<0.001);
244  assert((muon1b.theta()-tau1b_mom.theta())/muon1b.theta()<0.001);
245  assert((muon2b.theta()-tau2b_mom.theta())/muon2b.theta()<0.001);
246 
247  reco::Particle::LorentzVector tau1_mom = (invbooster(tau1b_mom));
248  reco::Particle::LorentzVector tau2_mom = (invbooster(tau2b_mom));
249 
250  // some additional checks
251  // the following tests guarantee a deviation of less
252  // than 0.1% for the following values of the original
253  // muons and the placed taus
254  // invariant mass
255  // transverse momentum
256  assert(((muon1_momentum+muon1_momentum).mass()-(tau1_mom+tau2_mom).mass())/(muon1_momentum+muon1_momentum).mass()<0.001);
257  assert(((muon1_momentum+muon2_momentum).pt()-(tau1_mom+tau2_mom).pt())/(muon1_momentum+muon1_momentum).pt()<0.001);
258 
259  muon1->setP4(tau1_mom);
260  muon2->setP4(tau2_mom);
261 
262  muon1->setPdgId(targetParticlePdgID_*muon1->pdgId()/abs(muon1->pdgId()));
263  muon2->setPdgId(targetParticlePdgID_*muon2->pdgId()/abs(muon2->pdgId()));
264 
265  muon1->setStatus(1);
266  muon2->setStatus(1);
267 
268  return;
269 }
virtual int pdgId() const
PDG identifier.
virtual void setStatus(int status)
set status word
assert(m_qm.get())
virtual void setP4(const LorentzVector &p4)
set 4-momentum
T sqrt(T t)
Definition: SSEVec.h:48
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
virtual void setPdgId(int pdgId)
virtual const LorentzVector & p4() const
four-momentum Lorentz vector
Definition: LeafCandidate.h:99
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:21

Member Data Documentation

edm::InputTag SelectReplacementCandidates::muonInputTag_
private
TrackAssociatorParameters SelectReplacementCandidates::parameters_
private
double SelectReplacementCandidates::targetParticleMass_
private
int SelectReplacementCandidates::targetParticlePdgID_
private
TrackDetectorAssociator SelectReplacementCandidates::trackAssociator_
private

Definition at line 44 of file SelectReplacementCandidates.h.

Referenced by getRawIDsAdvanced(), and SelectReplacementCandidates().