CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2/src/DataFormats/MuonReco/interface/MuonQuality.h

Go to the documentation of this file.
00001 #ifndef MuonReco_MuonQuality_h
00002 #define MuonReco_MuonQuality_h
00003 
00004 #include "DataFormats/Math/interface/Point3D.h"
00005 namespace reco {
00006     struct MuonQuality {
00009       bool updatedSta;
00011       float trkKink;
00013       float glbKink;
00015       float trkRelChi2;
00017       float staRelChi2;
00019       float chi2LocalPosition;
00021       float chi2LocalMomentum;
00023       float localDistance;
00025       float globalDeltaEtaPhi;
00027       bool tightMatch;
00029       float glbTrackProbability;
00030 
00032       math::XYZPoint tkKink_position;
00033       math::XYZPoint glbKink_position;
00034       
00035       MuonQuality():
00036         updatedSta(0),
00037         trkKink(0), glbKink(0),
00038         trkRelChi2(0), staRelChi2(0),
00039         chi2LocalPosition(0),chi2LocalMomentum(0),
00040         localDistance(0),globalDeltaEtaPhi(0),
00041         tightMatch(0),glbTrackProbability(0)
00042       { }
00043        
00044     };
00045 }
00046 #endif