Changes in modules/FastJetFinder.cc [01f457a:7c0fcd5] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/FastJetFinder.cc
r01f457a r7c0fcd5 241 241 Candidate *candidate, *constituent; 242 242 TLorentzVector momentum; 243 244 TLorentzVector constmomentum;245 246 243 Double_t deta, dphi, detaMax, dphiMax; 247 244 Double_t time, weightTime, avTime; … … 307 304 for(itOutputList = outputList.begin(); itOutputList != outputList.end(); ++itOutputList) 308 305 { 309 jet = *itOutputList; 310 if(fJetAlgorithm == 7) jet = join(jet.constituents()); 311 312 momentum.SetPxPyPzE(jet.px(), jet.py(), jet.pz(), jet.E()); 313 306 momentum.SetPxPyPzE(itOutputList->px(), itOutputList->py(), itOutputList->pz(), itOutputList->E()); 314 307 area.reset(0.0, 0.0, 0.0, 0.0); 315 308 if(fAreaDefinition) area = itOutputList->area_4vector(); … … 322 315 inputList.clear(); 323 316 inputList = sequence->constituents(*itOutputList); 324 325 constmomentum.SetPxPyPzE(0.0,0.0,0.0,0.0);;326 317 327 318 for(itInputList = inputList.begin(); itInputList != inputList.end(); ++itInputList) 328 319 { 329 320 constituent = static_cast<Candidate*>(fInputArray->At(itInputList->user_index())); 330 331 constmomentum += constituent->Momentum;332 321 333 322 deta = TMath::Abs(momentum.Eta() - constituent->Momentum.Eta());
Note:
See TracChangeset
for help on using the changeset viewer.