test
CMS 3D CMS Logo

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

#include <AlignmentTwoBodyDecayTrackSelector.h>

Public Types

typedef std::vector< const
reco::Track * > 
Tracks
 

Public Member Functions

 AlignmentTwoBodyDecayTrackSelector (const edm::ParameterSet &cfg, edm::ConsumesCollector &iC)
 constructor More...
 
Tracks select (const Tracks &tracks, const edm::Event &iEvent, const edm::EventSetup &iSetup)
 select tracks More...
 
bool useThisFilter ()
 returns if any of the Filters is used. More...
 
 ~AlignmentTwoBodyDecayTrackSelector ()
 destructor More...
 

Private Member Functions

bool checkAcoplanarity (const reco::Track *trk1, const reco::Track *trk2) const
 checks if the [cands] are acoplanar (returns empty set if not) More...
 
bool checkCharge (const reco::Track *trk1, const reco::Track *trk2=0) const
 checks if the mother has charge = [theCharge] More...
 
Tracks checkMass (const Tracks &cands) const
 checks if the mass of the mother is in the mass region More...
 
bool checkMETAcoplanarity (const reco::Track *trk, const reco::CaloMET *met) const
 checks if [cands] contains a acoplanar track w.r.t missing ET (returns empty set if not) More...
 
Tracks checkMETMass (const Tracks &cands, const edm::Event &iEvent) const
 checks if the mass of the mother is in the mass region adding missing E_T More...
 
void printTracks (const Tracks &col) const
 print Information on Track-Collection More...
 

Private Attributes

bool secThrBool
 
double theAcoplanarDistance
 
bool theAcoplanarityFilterSwitch
 
unsigned int theCandNumber
 
int theCharge
 
bool theChargeSwitch
 
double theDaughterMass
 
bool theMassrangeSwitch
 private data members More...
 
double theMaxMass
 
double theMinMass
 
bool theMissingETSwitch
 
edm::EDGetTokenT
< reco::CaloMETCollection
theMissingETToken
 
double thesecThr
 
bool theUnsignedSwitch
 

Detailed Description

Definition at line 15 of file AlignmentTwoBodyDecayTrackSelector.h.

Member Typedef Documentation

Definition at line 19 of file AlignmentTwoBodyDecayTrackSelector.h.

Constructor & Destructor Documentation

AlignmentTwoBodyDecayTrackSelector::AlignmentTwoBodyDecayTrackSelector ( const edm::ParameterSet cfg,
edm::ConsumesCollector iC 
)

constructor

Definition at line 24 of file AlignmentTwoBoyDecayTrackSelector.cc.

References funct::abs(), edm::ConsumesCollector::consumes(), edm::ParameterSet::getParameter(), and LogDebug.

25 {
26  LogDebug("Alignment") << "> applying two body decay Trackfilter ...";
27  theMassrangeSwitch = cfg.getParameter<bool>( "applyMassrangeFilter" );
28  if (theMassrangeSwitch){
29  theMinMass = cfg.getParameter<double>( "minXMass" );
30  theMaxMass = cfg.getParameter<double>( "maxXMass" );
31  theDaughterMass = cfg.getParameter<double>( "daughterMass" );
32  theCandNumber = cfg.getParameter<unsigned int>( "numberOfCandidates" );//Number of candidates to keep
33  secThrBool = cfg.getParameter<bool> ( "applySecThreshold" );
34  thesecThr = cfg.getParameter<double>( "secondThreshold" );
35  LogDebug("Alignment") << "> Massrange min,max : " << theMinMass << "," << theMaxMass
36  << "\n> Mass of daughter Particle : " << theDaughterMass;
37 
38  }else{
39  theMinMass = 0;
40  theMaxMass = 0;
41  theDaughterMass = 0;
42  }
43  theChargeSwitch = cfg.getParameter<bool>( "applyChargeFilter" );
44  if(theChargeSwitch){
45  theCharge = cfg.getParameter<int>( "charge" );
46  theUnsignedSwitch = cfg.getParameter<bool>( "useUnsignedCharge" );
47  if(theUnsignedSwitch)
49  LogDebug("Alignment") << "> Desired Charge, unsigned: "<<theCharge<<" , "<<theUnsignedSwitch;
50  }else{
51  theCharge =0;
52  theUnsignedSwitch = true;
53  }
54  theMissingETSwitch = cfg.getParameter<bool>( "applyMissingETFilter" );
56  edm::InputTag theMissingETSource = cfg.getParameter<InputTag>( "missingETSource" );
57  theMissingETToken = iC.consumes<reco::CaloMETCollection>(theMissingETSource);
58  LogDebug("Alignment") << "> missing Et Source: "<< theMissingETSource;
59  }
60  theAcoplanarityFilterSwitch = cfg.getParameter<bool>( "applyAcoplanarityFilter" );
62  theAcoplanarDistance = cfg.getParameter<double>( "acoplanarDistance" );
63  LogDebug("Alignment") << "> Acoplanar Distance: "<<theAcoplanarDistance;
64  }
65 
66 }
#define LogDebug(id)
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::vector< reco::CaloMET > CaloMETCollection
collection of CaloMET objects
edm::EDGetTokenT< reco::CaloMETCollection > theMissingETToken
AlignmentTwoBodyDecayTrackSelector::~AlignmentTwoBodyDecayTrackSelector ( )

destructor

Definition at line 70 of file AlignmentTwoBoyDecayTrackSelector.cc.

71 {}

Member Function Documentation

bool AlignmentTwoBodyDecayTrackSelector::checkAcoplanarity ( const reco::Track trk1,
const reco::Track trk2 
) const
private

checks if the [cands] are acoplanar (returns empty set if not)

Definition at line 281 of file AlignmentTwoBoyDecayTrackSelector.cc.

References SiPixelRawToDigiRegional_cfi::deltaPhi, M_PI, and reco::TrackBase::phi().

282 {
283  if (fabs(deltaPhi(trk1->phi(),trk2->phi()-M_PI)) < theAcoplanarDistance) return true;
284  return false;
285 }
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:640
#define M_PI
bool AlignmentTwoBodyDecayTrackSelector::checkCharge ( const reco::Track trk1,
const reco::Track trk2 = 0 
) const
private

checks if the mother has charge = [theCharge]

Definition at line 270 of file AlignmentTwoBoyDecayTrackSelector.cc.

References funct::abs(), and reco::TrackBase::charge().

271 {
272  int sumCharge = trk1->charge();
273  if (trk2) sumCharge += trk2->charge();
274  if (theUnsignedSwitch) sumCharge = std::abs(sumCharge);
275  if (sumCharge == theCharge) return true;
276  return false;
277 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int charge() const
track electric charge
Definition: TrackBase.h:562
AlignmentTwoBodyDecayTrackSelector::Tracks AlignmentTwoBodyDecayTrackSelector::checkMass ( const Tracks cands) const
private

checks if the mass of the mother is in the mass region

checks if the mass of the X is in the mass region

Definition at line 109 of file AlignmentTwoBoyDecayTrackSelector.cc.

References HLT_25ns10e33_v2_cff::checkCharge, i, LogDebug, mps_fire::result, and mathSSE::sqrt().

110 {
111  Tracks result;
112 
113  LogDebug("Alignment") <<"> cands size : "<< cands.size();
114 
115  if (cands.size()<2) return result;
116 
117  TLorentzVector track0;
118  TLorentzVector track1;
119  TLorentzVector mother;
120  typedef pair<const reco::Track*,const reco::Track*> constTrackPair;
121  typedef pair<double,constTrackPair> candCollectionItem;
122  vector<candCollectionItem> candCollection;
123 
124  for (unsigned int iCand = 0; iCand < cands.size(); iCand++) {
125 
126  track0.SetXYZT(cands.at(iCand)->px(),
127  cands.at(iCand)->py(),
128  cands.at(iCand)->pz(),
129  sqrt( cands.at(iCand)->p()*cands.at(iCand)->p() + theDaughterMass*theDaughterMass ));
130 
131  for (unsigned int jCand = iCand+1; jCand < cands.size(); jCand++) {
132 
133  track1.SetXYZT(cands.at(jCand)->px(),
134  cands.at(jCand)->py(),
135  cands.at(jCand)->pz(),
136  sqrt( cands.at(jCand)->p()*cands.at(jCand)->p() + theDaughterMass*theDaughterMass ));
137  if (secThrBool==true && track1.Pt() < thesecThr && track0.Pt()< thesecThr) continue;
138  mother = track0 + track1;
139 
140  const reco::Track *trk1 = cands.at(iCand);
141  const reco::Track *trk2 = cands.at(jCand);
142 
143  bool correctCharge = true;
144  if (theChargeSwitch) correctCharge = this->checkCharge(trk1, trk2);
145 
146  bool acoplanarTracks = true;
147  if (theAcoplanarityFilterSwitch) acoplanarTracks = this->checkAcoplanarity(trk1, trk2);
148 
149  if (mother.M() > theMinMass &&
150  mother.M() < theMaxMass &&
151  correctCharge &&
152  acoplanarTracks) {
153  candCollection.push_back(candCollectionItem(mother.Pt(),
154  constTrackPair(trk1, trk2)));
155  }
156  }
157  }
158 
159  if (candCollection.size()==0) return result;
160 
161  sort(candCollection.begin(), candCollection.end(),
163 
164  std::map<const reco::Track*,unsigned int> uniqueTrackIndex;
165  std::map<const reco::Track*,unsigned int>::iterator it;
166  for (unsigned int i=0;
167  i<candCollection.size() && i<theCandNumber;
168  i++) {
169  constTrackPair & trackPair = candCollection[i].second;
170 
171  it = uniqueTrackIndex.find(trackPair.first);
172  if (it==uniqueTrackIndex.end()) {
173  result.push_back(trackPair.first);
174  uniqueTrackIndex[trackPair.first] = i;
175  }
176 
177  it = uniqueTrackIndex.find(trackPair.second);
178  if (it==uniqueTrackIndex.end()) {
179  result.push_back(trackPair.second);
180  uniqueTrackIndex[trackPair.second] = i;
181  }
182  }
183 
184  return result;
185 }
#define LogDebug(id)
int i
Definition: DBlmapReader.cc:9
bool checkAcoplanarity(const reco::Track *trk1, const reco::Track *trk2) const
checks if the [cands] are acoplanar (returns empty set if not)
tuple result
Definition: mps_fire.py:84
T sqrt(T t)
Definition: SSEVec.h:18
bool checkCharge(const reco::Track *trk1, const reco::Track *trk2=0) const
checks if the mother has charge = [theCharge]
bool AlignmentTwoBodyDecayTrackSelector::checkMETAcoplanarity ( const reco::Track trk,
const reco::CaloMET met 
) const
private

checks if [cands] contains a acoplanar track w.r.t missing ET (returns empty set if not)

checks if the [cands] are acoplanar (returns empty set if not)

Definition at line 289 of file AlignmentTwoBoyDecayTrackSelector.cc.

References SiPixelRawToDigiRegional_cfi::deltaPhi, M_PI, reco::LeafCandidate::phi(), and reco::TrackBase::phi().

290 {
291  if (fabs(deltaPhi(trk1->phi(),met->phi()-M_PI)) < theAcoplanarDistance) return true;
292  return false;
293 }
virtual double phi() const final
momentum azimuthal angle
#define M_PI
AlignmentTwoBodyDecayTrackSelector::Tracks AlignmentTwoBodyDecayTrackSelector::checkMETMass ( const Tracks cands,
const edm::Event iEvent 
) const
private

checks if the mass of the mother is in the mass region adding missing E_T

checks if the mass of the X is in the mass region adding missing E_T

Definition at line 189 of file AlignmentTwoBoyDecayTrackSelector.cc.

References HLT_25ns10e33_v2_cff::checkCharge, edm::Event::getByToken(), i, edm::HandleBase::isValid(), LogDebug, objects.METAnalyzer::met, mps_fire::result, edm::second(), and mathSSE::sqrt().

190 {
191  Tracks result;
192 
193  LogDebug("Alignment") <<"> cands size : "<< cands.size();
194 
195  if (cands.size()==0) return result;
196 
197  TLorentzVector track;
198  TLorentzVector met4;
199  TLorentzVector mother;
200 
202  iEvent.getByToken(theMissingETToken ,missingET);
203  if (!missingET.isValid()) {
204  LogError("Alignment")<< "@SUB=AlignmentTwoBodyDecayTrackSelector::checkMETMass"
205  << "> could not optain missingET Collection!";
206  return result;
207  }
208 
209  typedef pair<double,const reco::Track*> candCollectionItem;
210  vector<candCollectionItem> candCollection;
211 
212  for (reco::CaloMETCollection::const_iterator itMET = missingET->begin();
213  itMET != missingET->end();
214  ++itMET) {
215 
216  met4.SetXYZT((*itMET).px(),
217  (*itMET).py(),
218  (*itMET).pz(),
219  (*itMET).p());
220 
221  for (unsigned int iCand = 0; iCand < cands.size(); iCand++) {
222 
223  track.SetXYZT(cands.at(iCand)->px(),
224  cands.at(iCand)->py(),
225  cands.at(iCand)->pz(),
226  sqrt( cands.at(iCand)->p()*cands.at(iCand)->p() + theDaughterMass*theDaughterMass ));
227 
228  mother = track + met4;
229 
230  const reco::Track *trk = cands.at(iCand);
231  const reco::CaloMET *met = &(*itMET);
232 
233  bool correctCharge = true;
234  if (theChargeSwitch) correctCharge = this->checkCharge(trk);
235 
236  bool acoplanarTracks = true;
237  if (theAcoplanarityFilterSwitch) acoplanarTracks = this->checkMETAcoplanarity(trk, met);
238 
239  if (mother.M() > theMinMass &&
240  mother.M() < theMaxMass &&
241  correctCharge &&
242  acoplanarTracks) {
243  candCollection.push_back(candCollectionItem(mother.Pt(), trk));
244  }
245  }
246  }
247 
248  if (candCollection.size()==0) return result;
249 
250  sort(candCollection.begin(), candCollection.end(),
252 
253  std::map<const reco::Track*,unsigned int> uniqueTrackIndex;
254  std::map<const reco::Track*,unsigned int>::iterator it;
255  for (unsigned int i=0;
256  i<candCollection.size() && i<theCandNumber;
257  i++) {
258  it = uniqueTrackIndex.find(candCollection[i].second);
259  if (it==uniqueTrackIndex.end()) {
260  result.push_back(candCollection[i].second);
261  uniqueTrackIndex[candCollection[i].second] = i;
262  }
263  }
264 
265  return result;
266 }
#define LogDebug(id)
int i
Definition: DBlmapReader.cc:9
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
bool checkMETAcoplanarity(const reco::Track *trk, const reco::CaloMET *met) const
checks if [cands] contains a acoplanar track w.r.t missing ET (returns empty set if not) ...
tuple result
Definition: mps_fire.py:84
U second(std::pair< T, U > const &p)
T sqrt(T t)
Definition: SSEVec.h:18
bool checkCharge(const reco::Track *trk1, const reco::Track *trk2=0) const
checks if the mother has charge = [theCharge]
bool isValid() const
Definition: HandleBase.h:75
edm::EDGetTokenT< reco::CaloMETCollection > theMissingETToken
void AlignmentTwoBodyDecayTrackSelector::printTracks ( const Tracks col) const
private

print Information on Track-Collection

Definition at line 298 of file AlignmentTwoBoyDecayTrackSelector.cc.

References KineDebug3::count(), and LogDebug.

299 {
300  int count = 0;
301  LogDebug("Alignment") << ">......................................";
302  for(Tracks::const_iterator it = col.begin();it < col.end();++it,++count){
303  LogDebug("Alignment")
304  <<"> Track No. "<< count <<": p = ("<<(*it)->px()<<","<<(*it)->py()<<","<<(*it)->pz()<<")\n"
305  <<"> pT = "<<(*it)->pt()<<" eta = "<<(*it)->eta()<<" charge = "<<(*it)->charge();
306  }
307  LogDebug("Alignment") << ">......................................";
308 }
#define LogDebug(id)
int col
Definition: cuy.py:1008
AlignmentTwoBodyDecayTrackSelector::Tracks AlignmentTwoBodyDecayTrackSelector::select ( const Tracks tracks,
const edm::Event iEvent,
const edm::EventSetup iSetup 
)

select tracks

Definition at line 83 of file AlignmentTwoBoyDecayTrackSelector.cc.

References LogDebug, mps_fire::result, and testEve_cfg::tracks.

Referenced by Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::find(), Vispa.Views.LineDecayView.LineDecayContainer::mousePressEvent(), Vispa.Gui.PortConnection.PointToPointConnection::mousePressEvent(), Vispa.Gui.VispaWidget.VispaWidget::mousePressEvent(), Vispa.Views.AbstractView.AbstractView::restoreSelection(), and TrackConfigSelector::select().

84 {
86 
87  if (theMassrangeSwitch) {
89  result = checkMETMass(result,iEvent);
90  else
91  result = checkMass(result);
92  }
93 
94  LogDebug("Alignment") << "> TwoBodyDecay tracks all,kept: " << tracks.size() << "," << result.size();
95  return result;
96 }
#define LogDebug(id)
tuple result
Definition: mps_fire.py:84
tuple tracks
Definition: testEve_cfg.py:39
Tracks checkMETMass(const Tracks &cands, const edm::Event &iEvent) const
checks if the mass of the mother is in the mass region adding missing E_T
Tracks checkMass(const Tracks &cands) const
checks if the mass of the mother is in the mass region
bool AlignmentTwoBodyDecayTrackSelector::useThisFilter ( )

Member Data Documentation

bool AlignmentTwoBodyDecayTrackSelector::secThrBool
private

Definition at line 55 of file AlignmentTwoBodyDecayTrackSelector.h.

double AlignmentTwoBodyDecayTrackSelector::theAcoplanarDistance
private

Definition at line 63 of file AlignmentTwoBodyDecayTrackSelector.h.

bool AlignmentTwoBodyDecayTrackSelector::theAcoplanarityFilterSwitch
private

Definition at line 49 of file AlignmentTwoBodyDecayTrackSelector.h.

unsigned int AlignmentTwoBodyDecayTrackSelector::theCandNumber
private

Definition at line 54 of file AlignmentTwoBodyDecayTrackSelector.h.

int AlignmentTwoBodyDecayTrackSelector::theCharge
private

Definition at line 58 of file AlignmentTwoBodyDecayTrackSelector.h.

bool AlignmentTwoBodyDecayTrackSelector::theChargeSwitch
private

Definition at line 47 of file AlignmentTwoBodyDecayTrackSelector.h.

double AlignmentTwoBodyDecayTrackSelector::theDaughterMass
private

Definition at line 53 of file AlignmentTwoBodyDecayTrackSelector.h.

bool AlignmentTwoBodyDecayTrackSelector::theMassrangeSwitch
private

private data members

Definition at line 46 of file AlignmentTwoBodyDecayTrackSelector.h.

double AlignmentTwoBodyDecayTrackSelector::theMaxMass
private

Definition at line 52 of file AlignmentTwoBodyDecayTrackSelector.h.

double AlignmentTwoBodyDecayTrackSelector::theMinMass
private

Definition at line 51 of file AlignmentTwoBodyDecayTrackSelector.h.

bool AlignmentTwoBodyDecayTrackSelector::theMissingETSwitch
private

Definition at line 48 of file AlignmentTwoBodyDecayTrackSelector.h.

edm::EDGetTokenT<reco::CaloMETCollection> AlignmentTwoBodyDecayTrackSelector::theMissingETToken
private

Definition at line 61 of file AlignmentTwoBodyDecayTrackSelector.h.

double AlignmentTwoBodyDecayTrackSelector::thesecThr
private

Definition at line 56 of file AlignmentTwoBodyDecayTrackSelector.h.

bool AlignmentTwoBodyDecayTrackSelector::theUnsignedSwitch
private

Definition at line 59 of file AlignmentTwoBodyDecayTrackSelector.h.