CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
GhostBuster Class Reference

#include <GhostBuster.h>

Inheritance diagram for GhostBuster:
IGhostBuster IGhostBuster

Public Member Functions

 GhostBuster (const OMTFConfiguration *omtfConfig)
 
std::vector< AlgoMuonselect (std::vector< AlgoMuon > refHitCands, int charge=0) override
 
AlgoMuons select (AlgoMuons refHitCands, int charge=0) override
 
 ~GhostBuster () override
 
 ~GhostBuster () override
 
- Public Member Functions inherited from IGhostBuster
virtual ~IGhostBuster ()
 
virtual ~IGhostBuster ()
 

Private Attributes

const OMTFConfigurationomtfConfig
 

Detailed Description

Definition at line 15 of file GhostBuster.h.

Constructor & Destructor Documentation

◆ ~GhostBuster() [1/2]

GhostBuster::~GhostBuster ( )
inlineoverride

Definition at line 17 of file GhostBuster.h.

17 {};

◆ GhostBuster()

GhostBuster::GhostBuster ( const OMTFConfiguration omtfConfig)
inline

Definition at line 20 of file GhostBuster.h.

const OMTFConfiguration * omtfConfig
Definition: GhostBuster.h:17

◆ ~GhostBuster() [2/2]

GhostBuster::~GhostBuster ( )
inlineoverride

Definition at line 22 of file GhostBuster.h.

22 {};

Member Function Documentation

◆ select() [1/2]

std::vector< AlgoMuon > GhostBuster::select ( std::vector< AlgoMuon refHitCands,
int  charge = 0 
)
overridevirtual

Implements IGhostBuster.

Definition at line 13 of file GhostBuster.cc.

References funct::abs(), ALCARECOTkAlJpsiMuMu_cff::charge, and jetUpdater_cfi::sort.

13  {
14  std::vector<AlgoMuon> refHitCleanCands;
15  // Sort candidates with decreased goodness,
16  // where goodness definied in < operator of AlgoMuon
17  std::sort(refHitCands.rbegin(), refHitCands.rend());
18 
19  for (std::vector<AlgoMuon>::iterator it1 = refHitCands.begin(); it1 != refHitCands.end(); ++it1) {
20  bool isGhost = false;
21  for (std::vector<AlgoMuon>::iterator it2 = refHitCleanCands.begin(); it2 != refHitCleanCands.end(); ++it2) {
22  //do not accept candidates with similar phi (any charge combination)
23  //veto window 5deg(=half of logic cone)=5/360*5760=80"logic strips"
24  //veto window 5 degree in GMT scale is 5/360*576=8 units
25  if (std::abs(phiGMT(it1->getPhi()) - phiGMT(it2->getPhi())) < 8) {
26  // if(std::abs(it1->getPhi() - it2->getPhi())<5/360.0*nPhiBins){
27  isGhost = true;
28  break;
29  //which one candidate is killed depends only on the order in the refHitCands (the one with smaller index is taken), and this order is assured by the sort above
30  //TODO here the candidate that is killed does not kill other candidates - check if the firmware does the same (KB)
31  }
32  }
33  if (it1->getQ() > 0 && !isGhost)
34  refHitCleanCands.push_back(*it1);
35  }
36 
37  refHitCleanCands.resize(3, AlgoMuon(0, 999, 9999, 0, 0, 0, 0, 0)); //FIXME
38  //refHitCleanCands.resize( 3, AlgoMuon() );
39 
40  std::stringstream myStr;
41  bool hasCandidates = false;
42  for (unsigned int iRefHit = 0; iRefHit < refHitCands.size(); ++iRefHit) {
43  if (refHitCands[iRefHit].getQ()) {
44  hasCandidates = true;
45  break;
46  }
47  }
48  for (unsigned int iRefHit = 0; iRefHit < refHitCands.size(); ++iRefHit) {
49  if (refHitCands[iRefHit].getQ())
50  myStr << "Ref hit: " << iRefHit << " " << refHitCands[iRefHit] << std::endl;
51  }
52  myStr << "Selected Candidates with charge: " << charge << std::endl;
53  for (unsigned int iCand = 0; iCand < refHitCleanCands.size(); ++iCand) {
54  myStr << "Cand: " << iCand << " " << refHitCleanCands[iCand] << std::endl;
55  }
56 
57  if (hasCandidates)
58  edm::LogInfo("OMTF Sorter") << myStr.str();
59 
60  // update refHitCands with refHitCleanCands
61  return refHitCleanCands;
62 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
Log< level::Info, false > LogInfo

◆ select() [2/2]

AlgoMuons GhostBuster::select ( AlgoMuons  refHitCands,
int  charge = 0 
)
overridevirtual

Implements IGhostBuster.

Definition at line 8 of file GhostBuster.cc.

References a, funct::abs(), b, ALCARECOTkAlJpsiMuMu_cff::charge, omtfConfig, OMTFConfiguration::procPhiToGmtPhi(), and jetUpdater_cfi::sort.

8  {
9  //edm::LogImportant("OMTFReconstruction")<<"calling "<<__PRETTY_FUNCTION__ <<std::endl;
10 
11  AlgoMuons refHitCleanCands;
12  // Sort candidates with decreased goodness,
13  auto customLess = [&](const AlgoMuons::value_type& a, const AlgoMuons::value_type& b) -> bool {
14  return (*a) < (*b); //< operator of AlgoMuon
15  };
16 
17  std::sort(refHitCands.rbegin(), refHitCands.rend(), customLess);
18 
19  for (AlgoMuons::iterator it1 = refHitCands.begin(); it1 != refHitCands.end(); ++it1) {
20  bool isGhost = false;
21  for (AlgoMuons::iterator it2 = refHitCleanCands.begin(); it2 != refHitCleanCands.end(); ++it2) {
22  //do not accept candidates with similar phi (any charge combination)
23  //veto window 5deg(=half of logic cone)=5/360*5760=80"logic strips"
24  //veto window 5 degree in GMT scale is 5/360*576=8 units
25  if (std::abs(omtfConfig->procPhiToGmtPhi((*it1)->getPhi()) - omtfConfig->procPhiToGmtPhi((*it2)->getPhi())) < 8) {
26  // if(std::abs(it1->getPhi() - it2->getPhi())<5/360.0*nPhiBins){
27  isGhost = true;
28  break;
29  //which one candidate is killed depends only on the order in the refHitCands (the one with smaller index is taken), and this order is assured by the sort above
30  //TODO here the candidate that is killed does not kill other candidates - check if the firmware does the same (KB)
31  }
32  }
33  if ((*it1)->getQ() > 0 && !isGhost)
34  refHitCleanCands.emplace_back(new AlgoMuon(**it1));
35 
36  if (refHitCleanCands.size() >= 3)
37  break;
38  }
39 
40  while (refHitCleanCands.size() < 3)
41  refHitCleanCands.emplace_back(new AlgoMuon());
42 
43  std::stringstream myStr;
44  bool hasCandidates = false;
45  for (unsigned int iRefHit = 0; iRefHit < refHitCands.size(); ++iRefHit) {
46  if (refHitCands[iRefHit]->getQ()) {
47  hasCandidates = true;
48  break;
49  }
50  }
51  for (unsigned int iRefHit = 0; iRefHit < refHitCands.size(); ++iRefHit) {
52  if (refHitCands[iRefHit]->getQ())
53  myStr << "Ref hit: " << iRefHit << " " << refHitCands[iRefHit] << std::endl;
54  }
55  myStr << "Selected Candidates with charge: " << charge << std::endl;
56  for (unsigned int iCand = 0; iCand < refHitCleanCands.size(); ++iCand) {
57  myStr << "Cand: " << iCand << " " << refHitCleanCands[iCand] << std::endl;
58  }
59 
60  if (hasCandidates)
61  edm::LogInfo("OMTF Sorter") << myStr.str();
62 
63  // update refHitCands with refHitCleanCands
64  return refHitCleanCands;
65 }
int procPhiToGmtPhi(int procPhi) const
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
Log< level::Info, false > LogInfo
double b
Definition: hdecay.h:120
std::vector< AlgoMuonPtr > AlgoMuons
Definition: AlgoMuon.h:102
const OMTFConfiguration * omtfConfig
Definition: GhostBuster.h:17
double a
Definition: hdecay.h:121

Member Data Documentation

◆ omtfConfig

const OMTFConfiguration* GhostBuster::omtfConfig
private

Definition at line 17 of file GhostBuster.h.

Referenced by select().