ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Utils/interface/MuonTools.h
(Generate patch)

Comparing UserCode/MitPhysics/Utils/interface/MuonTools.h (file contents):
Revision 1.3 by loizides, Thu Nov 27 16:28:58 2008 UTC vs.
Revision 1.13 by ceballos, Mon Jun 28 21:06:43 2010 UTC

# Line 3 | Line 3
3   //
4   // MuonTools
5   //
6 < // Isolation functions to compute various kinds of isolation.
7 < // http://cmslxr.fnal.gov/lxr/source/RecoMuon/MuonIdentification/
8 < // http://cmslxr.fnal.gov/lxr/source/DataFormats/MuonReco/
6 > // This class allows you to classify a given muon according to defined criteria. For this purpose
7 > // is loads histograms from two ROOT files, specified in the constructor. The main function then
8 > // is "IsGood(*muon, selection)" which returns true if the given muon fulfills the selection
9 > // criteria.
10 > //
11 > // Logically, the code has been put together by Phil who took most of the ideas from
12 > //  http://cmslxr.fnal.gov/lxr/source/RecoMuon/MuonIdentification/
13 > //  http://cmslxr.fnal.gov/lxr/source/DataFormats/MuonReco/
14 > //
15   // Authors: P.Harris, C.Loizides
16   //--------------------------------------------------------------------------------------------------
17  
18 < #ifndef MITPHYSICS_UTIL_MUONTOOLS_H
19 < #define MITPHYSICS_UTIL_MUONTOOLS_H
18 > #ifndef MITPHYSICS_UTILS_MUONTOOLS_H
19 > #define MITPHYSICS_UTILS_MUONTOOLS_H
20  
21   #include "MitAna/DataTree/interface/Muon.h"
22 + #include "MitAna/DataTree/interface/VertexCol.h"
23 + #include "MitAna/DataTree/interface/BeamSpotCol.h"
24   #include "MitCommon/MathTools/interface/MathUtils.h"
25   #include "TH2D.h"
26  
# Line 21 | Line 29 | namespace mithep {
29      public:
30        MuonTools(const char *mutemp="$CMSSW_BASE/src/MitPhysics/data/MuonCaloTemplate.root",
31                  const char *pitemp="$CMSSW_BASE/src/MitPhysics/data/PionCaloTemplate.root");
32 <      ~MuonTools();
32 >      virtual ~MuonTools();
33  
34        enum ESelType {
35 <        kAllArbitrated,
36 <        kPromptTight,
37 <        kTMLastStationLoose,
38 <        kTMLastStationTight,
39 <        kTMOneStationLoose,
40 <        kTMOneStationTight,
41 <        kTM2DCompatibilityLoose,
42 <        kTM2DCompatibilityTight
35 >        kAllArbitrated,          //All arbitration (DT/CSC/RPC Hits) put on at least one
36 >                                 //  segments given a global Muon
37 >        kPromptTight,            //Standard global muon identification
38 >        kTMLastStationLoose,     //Loose matching requirements on lastmost muon station of reco
39 >        kTMLastStationTight,     //Tight matching requirements on lastmost muon station of reco
40 >        kTMOneStationLoose,      //Loose matching requirements on at least one muon station of reco
41 >        kTMOneStationTight,      //Tight matching requirements on at least one muon station of reco
42 >        kTM2DCompatibilityLoose, //Loose requirement on sum of compatabiliity variables
43 >                                 //  ===> 1.2 Segment compatability + 0.8 calo compatability > 0.8
44 >        kTM2DCompatibilityTight  //Tight requirement on sum of compatabiliity variables
45 >                                 //  ===> 1.2 Segment compatability + 0.8 calo compatability > 1.2
46        };
47  
48 <      Bool_t      Init(const char *mutemp, const char *pitemp);
49 <      Bool_t      IsGood(const mithep::Muon *iMuon, ESelType iSel) const;
48 >      Bool_t        Init(const char *mutemp, const char *pitemp);
49 >      Bool_t        IsGood(const mithep::Muon *iMuon, ESelType iSel) const;
50 >      Double_t      GetCaloCompatability(const mithep::Muon *iMuon,
51 >                                         Bool_t iEMSpecial, Bool_t iCorrectedHCAL) const;
52 >      Double_t      GetSegmentCompatability(const mithep::Muon *iMuon)             const;
53 >      static Bool_t PassD0Cut(const Muon *mu, const VertexCol *vertices, Double_t fD0Cut,
54 >                              Bool_t fReverseD0Cut);
55 >      static Bool_t PassD0Cut(const Muon *mu, const BeamSpotCol *beamspots, Double_t fD0Cut,
56 >                              Bool_t fReverseD0Cut);
57 >      static Bool_t PassSoftMuonCut(const Muon *mu, const VertexCol *vertices);
58  
59      protected:
60        void        DeleteHistos();
61 <      Double_t    GetCaloCompatability(const mithep::Muon *iMuon,
62 <                                       Bool_t iEMSpecial, Bool_t iCorrectedHCAL) const;
63 <      Double_t    GetSegmentCompatability(const mithep::Muon *iMuon)             const;
45 <      Bool_t      Overflow(const TH2D *iHist, Double_t lVal0, Double_t lVal1)    const;
46 <      Double_t    SigWeight(Double_t iVal0, Double_t iVal1)                      const;
47 <
61 >      Bool_t      Overflow(const TH2D *iHist, Double_t lVal0, Double_t lVal1)    const;
62 >      Double_t    SigWeight(Double_t iVal0, Double_t iVal1)                      const;
63 >  
64      private:
65 <      Bool_t      fIsInit;              //!
66 <      TH2D       *fmuon_em_etaEmi;      //!
67 <      TH2D       *fmuon_had_etaEmi;     //!
68 <      TH2D       *fmuon_had_etaTmi;     //!
69 <      TH2D       *fmuon_em_etaB;        //!
70 <      TH2D       *fmuon_had_etaB;       //!
71 <      TH2D       *fmuon_ho_etaB;        //!
72 <      TH2D       *fmuon_had_etaTpl;     //!
73 <      TH2D       *fmuon_em_etaEpl;      //!
74 <      TH2D       *fmuon_had_etaEpl;     //!
75 <      TH2D       *fpion_em_etaEmi;      //!
76 <      TH2D       *fpion_had_etaEmi;     //!
77 <      TH2D       *fpion_had_etaTmi;     //!
78 <      TH2D       *fpion_em_etaB;        //!
79 <      TH2D       *fpion_had_etaB;       //!
80 <      TH2D       *fpion_ho_etaB;        //!
81 <      TH2D       *fpion_had_etaTpl;     //!
82 <      TH2D       *fpion_em_etaEpl;      //!
83 <      TH2D       *fpion_had_etaEpl;     //!
65 >      Bool_t      fIsInit;              //!=true if histograms are loaded
66 >      TH2D       *fmuon_em_etaEmi;      //!Neg Endcap EM       Calo Deposit Template for Muons
67 >      TH2D       *fmuon_had_etaEmi;     //!Neg Endcap Hadronic Calo Deposit Template for Muons
68 >      TH2D       *fmuon_had_etaTmi;     //!Neg Transition Hadronic Calo Deposit Template for Muons
69 >      TH2D       *fmuon_em_etaB;        //!Barrel EM       Calo Deposit Template for Muons
70 >      TH2D       *fmuon_had_etaB;       //!Barrel Hadronic Calo Deposit Template for Muons
71 >      TH2D       *fmuon_ho_etaB;        //!Barrel HO       Calo Deposit Template for Muons
72 >      TH2D       *fmuon_had_etaTpl;     //!Plus Transition Hadronic Calo Deposit Template for Muons
73 >      TH2D       *fmuon_em_etaEpl;      //!Plus Endcap EM       Calo Deposit Template for Muons
74 >      TH2D       *fmuon_had_etaEpl;     //!Plus Endcap Hadronic Calo Deposit Template for Muons
75 >      TH2D       *fpion_em_etaEmi;      //!Neg  Endcap EM       Calo Deposit Template for Pions
76 >      TH2D       *fpion_had_etaEmi;     //!Neg  Endcap Hadronic Calo Deposit Template for Pions
77 >      TH2D       *fpion_had_etaTmi;     //!Neg Transition Hadronic Calo Deposit Template for Pions
78 >      TH2D       *fpion_em_etaB;        //!Barrel EM       Calo Deposit Template for Pions
79 >      TH2D       *fpion_had_etaB;       //!Barrel Hadronic Calo Deposit Template for Pions
80 >      TH2D       *fpion_ho_etaB;        //!Barrel HO       Calo Deposit Template for Pions
81 >      TH2D       *fpion_had_etaTpl;     //!Plus Transition Hadronic Calo Deposit Template for Pions
82 >      TH2D       *fpion_em_etaEpl;      //!Plus Endcap EM       Calo Deposit Template for Pions
83 >      TH2D       *fpion_had_etaEpl;     //!Plus Endcap Hadronic Calo Deposit Template for Pions
84  
85        TH2D       *LoadHisto(const char *fname, TFile *file)                      const;
86 +
87 +    ClassDef(MuonTools, 0) // Muon tools
88    };
89   }
90  
91   //--------------------------------------------------------------------------------------------------
92   inline Double_t mithep::MuonTools::SigWeight(Double_t iVal0, Double_t iVal1) const
93   {
94 <  //
94 >  // Returns weighted uncertainty given segment matching uncertainty (iVal0) and
95 >  // segment matching pull (iVal1).
96  
97 <  if (iVal1 < 1.)
97 >  if (iVal1 < 1.)  //if pull defined and within range
98      return 1.;
99 <  if (iVal0 < 3. && iVal1 > 3.) {
99 >  if (iVal0 < 3. && iVal1 > 3.) {       //if pull not well defined and uncertainty defined
100      Double_t lVal = TMath::Max(iVal0,1.);
101      return 1./TMath::Power(lVal,0.25);
102    }
103  
104 <  Double_t lVal = TMath::Max(iVal1,1.);
104 >  Double_t lVal = TMath::Max(iVal1,1.); //if pull > 1 and pull < 3 return 1/pull^4
105    return 1./TMath::Power(lVal,0.25);
106   }
88
107   //--------------------------------------------------------------------------------------------------
108   inline Bool_t mithep::MuonTools::Overflow(const TH2D *iHist, Double_t lVal0, Double_t lVal1) const
109   {
# Line 96 | Line 114 | inline Bool_t mithep::MuonTools::Overflo
114  
115    if (iHist ->GetXaxis()->FindBin(lVal0) == 0                  ||
116        iHist ->GetXaxis()->FindBin(lVal0) >  iHist->GetNbinsX() ||
117 <      iHist ->GetYaxis()->FindBin(lVal0) == 0                  ||
118 <      iHist ->GetYaxis()->FindBin(lVal0) >  iHist->GetNbinsY()) {
117 >      iHist ->GetYaxis()->FindBin(lVal1) == 0                  ||
118 >      iHist ->GetYaxis()->FindBin(lVal1) >  iHist->GetNbinsY()) {
119      return kTRUE;
120    }
121    return kFALSE;
122   }
123   #endif
106
107 #if 0
108    static inline MCParticle* etaPhiMatch(MCParticleCol* iMCParts,Muon *iMuon) {
109      mithep::MCParticle *lMC = 0; Double_t lDR = 1.; Double_t lPt = -1.;
110      for(unsigned Int_t i0 = 0; i0 < iMCParts->GetEntries(); i0++) {
111        mithep::MCParticle* pMC = iMCParts->At(i0);
112        if(pMC->Status() != 1) continue;
113        Double_t pDR = mithep::MathUtils::DeltaR(pMC->Mom(),iMuon->Mom());
114        if(pDR > lDR && pDR > 0.01) continue;
115        if(fabs(pMC->Pt()) < lPt)   continue;
116        lDR = pDR;
117        lMC = pMC;
118        lPt = pMC->Pt();
119      }
120      return lMC;
121    }
122    static inline Muon* match(MuonCol* iMuons,Track *iTrack) {
123      mithep::Muon *lMuon = 0; Double_t lDR = 1.; Double_t lPt = -1.;
124      for(unsigned Int_t i0 = 0; i0 < iMuons->GetEntries(); i0++) {
125        mithep::Muon* pMuon = iMuons->At(i0);
126        Double_t pDR = mithep::MathUtils::DeltaR(pMuon->Mom(),iTrack->Mom4(0.109));
127        if(pDR > lDR && pDR > 0.01) continue;
128        if(fabs(pMuon->Pt()) < lPt)   continue;
129        lDR   = pDR;
130        lMuon = pMuon;
131        lPt   = pMuon->Pt();
132      }
133      return lMuon;
134    }
135 #endif
136
137

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines