Difference: TCMET22XValidation (1 vs. 9)

Revision 924 Feb 2009 - Main.FrankGolf

Line: 1 to 1
 
META TOPICPARENT name="FrankGolfSandbox"
Line: 179 to 179
 
  • The following tags are available for using tcMET in 22X releases. After setting up a 22X release area, one should check out
    • cvs co -r V02-05-00-20 RecoMET/METAlgorithms
    • cvs co -r V02-08-02-16 RecoMET/METProducers
Changed:
<
<
    • cvs co -r V00-04-02-15 RecoMET/Configuration
>
>
    • cvs co -r V00-04-02-16 RecoMET/Configuration
 
    • cvs co -r V00-06-02-09 DataFormats/METReco

  • After building, to see how to incorporate tcMet correction to your analysis sequence, see example in test file. This example will produce a tcMET collection.

Revision 823 Feb 2009 - Main.AviYagil

Line: 1 to 1
 
META TOPICPARENT name="FrankGolfSandbox"
Line: 173 to 173
 
    • chi2/ndof < 4
    • abs(d0corr) < 0.1
Changed:
<
<

Instructions and Example Use

>
>

Instructions and Example Use ( How to run it...)

 
  • The following tags are available for using tcMET in 22X releases. After setting up a 22X release area, one should check out
    • cvs co -r V02-05-00-20 RecoMET/METAlgorithms

Revision 723 Feb 2009 - Main.FrankGolf

Line: 1 to 1
 
META TOPICPARENT name="FrankGolfSandbox"
Line: 183 to 181
 
    • cvs co -r V00-04-02-15 RecoMET/Configuration
    • cvs co -r V00-06-02-09 DataFormats/METReco

Changed:
<
<
  • After building, to see how to incroporate tcMet correction to your analysis sequence, see example in test file.
This example will produce a tcMET collection.
>
>
  • After building, to see how to incorporate tcMet correction to your analysis sequence, see example in test file. This example will produce a tcMET collection.
 
Changed:
<
<
  • The implementation of tcMET makes use of the metMuonCorrections module that is part of 22X releases. As a result, the user must include the cff file in their cfg (as in done in the above example) and place the module in their path before tcMet as shown below.
>
>
  • The implementation of tcMET makes use of the metMuonCorrections module that is part of 22X releases. As a result, the user must include the cff file in their cfg (as is done in the above example) and place the module in their path before tcMet as shown below.
 
# load muon corrections for !MET module

Revision 623 Feb 2009 - Main.AviYagil

Line: 1 to 1
 
META TOPICPARENT name="FrankGolfSandbox"
Line: 16 to 16
 
  • ~20% improvement of MET resolution in events with real MET (again similar to 1.6.x)
  • ~20% improvement in the determination of the direction of the MET as well.
Deleted:
<
<

Instructions and Example Use

  • Private tags are available for using tcMET in 22X releases. After setting up a 22X release area, one should check out
    • cvs co -r V02-05-00-20 RecoMET/METAlgorithms
    • cvs co -r V02-08-02-16 RecoMET/METProducers
    • cvs co -r V00-04-02-15 RecoMET/Configuration
    • cvs co -r V00-06-02-09 DataFormats/METReco

  • After building, running the test file will produce a tcMET collection

  • The implementation of tcMET makes use of the metMuonCorrections module that is part of 22X releases. As a result, the user must include the cff file in their cfg and place the module in their path before tcMet as shown below

# load muon corrections for !MET module
process.load("JetMETCorrections.Type1MET.MetMuonCorrections_cff")

# load track-corrected MET module
process.load("RecoMET.METProducers.TCMET_cfi")

# run sequence of muon+track MET corrections
process.p = cms.Path(process.MetMuonCorrections*process.tcMet)

* the configuration files for the modules are

    • JetMETCorrections/Type1MET/python/corMetMuons_cfi.py
    • JetMETCorrections/Type1MET/python/MetMuonCorrectiosn_cff.py
    • RecoMET/METProducers/python/TCMET_cfi.py

It is recommended to use the configurations provided.

  • After running a test job, you should see a tcMet collection in your TBrowser

tbrowser_tcmet.png

  • The tcMet collection can be accessed in the usual way:

Handle< View<MET> > tcmet_h;
    
iEvent.getByLabel("tcMet", tcmet_h);
  
*evt_tcmet        = (tcmet_h->front()).et();
*evt_tcmetPhi     = (tcmet_h->front()).phi();
*evt_tcsumet      = (tcmet_h->front()).sumEt();
 

Results for events with fake MET (DY):

Line: 221 to 175
 
    • abs(d0corr) < 0.1
Added:
>
>

Instructions and Example Use

  • The following tags are available for using tcMET in 22X releases. After setting up a 22X release area, one should check out
    • cvs co -r V02-05-00-20 RecoMET/METAlgorithms
    • cvs co -r V02-08-02-16 RecoMET/METProducers
    • cvs co -r V00-04-02-15 RecoMET/Configuration
    • cvs co -r V00-06-02-09 DataFormats/METReco

  • After building, to see how to incroporate tcMet correction to your analysis sequence, see example in test file.
This example will produce a tcMET collection.

  • The implementation of tcMET makes use of the metMuonCorrections module that is part of 22X releases. As a result, the user must include the cff file in their cfg (as in done in the above example) and place the module in their path before tcMet as shown below.

# load muon corrections for !MET module
process.load("JetMETCorrections.Type1MET.MetMuonCorrections_cff")

# load track-corrected MET module
process.load("RecoMET.METProducers.TCMET_cfi")

# run sequence of muon+track MET corrections
process.p = cms.Path(process.MetMuonCorrections*process.tcMet)

* the configuration files for the modules are

    • JetMETCorrections/Type1MET/python/corMetMuons_cfi.py
    • JetMETCorrections/Type1MET/python/MetMuonCorrectiosn_cff.py
    • RecoMET/METProducers/python/TCMET_cfi.py

It is recommended to use the configurations provided.

  • After running a test job, you should see a tcMet collection in your TBrowser

tbrowser_tcmet.png

  • The tcMet collection can be accessed in the usual way:

Handle< View<MET> > tcmet_h;
    
iEvent.getByLabel("tcMet", tcmet_h);
  
*evt_tcmet        = (tcmet_h->front()).et();
*evt_tcmetPhi     = (tcmet_h->front()).phi();
*evt_tcsumet      = (tcmet_h->front()).sumEt();

 -- FrankGolf - 19 Feb 2009

META FILEATTACHMENT attachment="nhits_nm1_new.ps" attr="" comment="" date="1235067858" name="nhits_nm1_new.ps" path="nhits_nm1_new.ps" size="12471" stream="nhits_nm1_new.ps" user="Main.FrankGolf" version="1"

Revision 523 Feb 2009 - Main.FrankGolf

Line: 1 to 1
 
META TOPICPARENT name="FrankGolfSandbox"
Line: 8 to 8
 
    • /ZJets-madgraph/Fall08_IDEAL_V9_reco-v2/GEN-SIM-RECO
    • /WW_2l/Summer08_IDEAL_V9_v2/GEN-SIM-RECO
For now, we looked at the performance in:
Changed:
<
<
  • DY events looking for fake MET rejection
  • WW events for real MET performance
>
>
  • DY events looking for fake MET rejection
  • WW events for real MET performance
  In Summary, we see:
Changed:
<
<
  • ~x3 rejection of fake MET for a cut at 30GeV (similar to 1.6.x performance)
  • ~20% improvement of MET resolution in events with real MET (again similar to 1.6.x)
  • ~20% improvement in the determination of the direction of the MET as well.
>
>
  • ~x3 rejection of fake MET for a cut at 30GeV (similar to 1.6.x performance)
  • ~20% improvement of MET resolution in events with real MET (again similar to 1.6.x)
  • ~20% improvement in the determination of the direction of the MET as well.
 
Added:
>
>

Instructions and Example Use

  • Private tags are available for using tcMET in 22X releases. After setting up a 22X release area, one should check out
    • cvs co -r V02-05-00-20 RecoMET/METAlgorithms
    • cvs co -r V02-08-02-16 RecoMET/METProducers
    • cvs co -r V00-04-02-15 RecoMET/Configuration
    • cvs co -r V00-06-02-09 DataFormats/METReco

  • After building, running the test file will produce a tcMET collection

  • The implementation of tcMET makes use of the metMuonCorrections module that is part of 22X releases. As a result, the user must include the cff file in their cfg and place the module in their path before tcMet as shown below

# load muon corrections for !MET module
process.load("JetMETCorrections.Type1MET.MetMuonCorrections_cff")

# load track-corrected MET module
process.load("RecoMET.METProducers.TCMET_cfi")

# run sequence of muon+track MET corrections
process.p = cms.Path(process.MetMuonCorrections*process.tcMet)

* the configuration files for the modules are

    • JetMETCorrections/Type1MET/python/corMetMuons_cfi.py
    • JetMETCorrections/Type1MET/python/MetMuonCorrectiosn_cff.py
    • RecoMET/METProducers/python/TCMET_cfi.py

It is recommended to use the configurations provided.

  • After running a test job, you should see a tcMet collection in your TBrowser

tbrowser_tcmet.png

  • The tcMet collection can be accessed in the usual way:

Handle< View<MET> > tcmet_h;
    
iEvent.getByLabel("tcMet", tcmet_h);
  
*evt_tcmet        = (tcmet_h->front()).et();
*evt_tcmetPhi     = (tcmet_h->front()).phi();
*evt_tcsumet      = (tcmet_h->front()).sumEt();
 

Results for events with fake MET (DY):

Line: 195 to 241
 
META FILEATTACHMENT attachment="dPhi_metcomp_wwee2.png" attr="" comment="" date="1235069244" name="dPhi_metcomp_wwee2.png" path="dPhi_metcomp_wwee2.png" size="8595" stream="dPhi_metcomp_wwee2.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="dPhi_metcomp_wwmm2.png" attr="" comment="" date="1235069259" name="dPhi_metcomp_wwmm2.png" path="dPhi_metcomp_wwmm2.png" size="8142" stream="dPhi_metcomp_wwmm2.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="cmspaper.pdf" attr="" comment="" date="1235074809" name="cmspaper.pdf" path="cmspaper.pdf" size="663968" stream="cmspaper.pdf" user="Main.FrankGolf" version="1"
Added:
>
>
META FILEATTACHMENT attachment="test_cfg.py.txt" attr="" comment="" date="1235424061" name="test_cfg.py.txt" path="test_cfg.py" size="2336" stream="test_cfg.py" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="tbrowser_tcmet.png" attr="" comment="" date="1235424536" name="tbrowser_tcmet.png" path="tbrowser_tcmet.png" size="43313" stream="tbrowser_tcmet.png" user="Main.FrankGolf" version="1"

Revision 419 Feb 2009 - Main.FrankGolf

Line: 1 to 1
 
META TOPICPARENT name="FrankGolfSandbox"
Line: 23 to 23
  metcomp_dyee.png

  • we observe significant reduction of the tail of the MET distribution for di-lepton final states, consistent with that seen previously in release 16X
Added:
>
>
  • metMuonCorr is met corrected for muons
 
  • table for cut MET > 30 GeV
Line: 87 to 88
 

Comparison with patMET

  • Since patMET is about to be used extensively, we compare to what one get from it, out of the box.
Changed:
<
<
    • patMET is corrected for both muons and Jets
>
>
    • patMET (met_pat_metCor) is corrected for both muons and Jets
  metcomp_pat_dymm.png metcomp_pat_dyee.png
Line: 137 to 138
 
    • pt > 10 (from global fit), abs(eta) < 2.5
    • qoverp_error < 0.5
Added:
>
>
  • metMuonCorr is MET corrected for muons using the standard CMS method
  • met_pat_metCor is PAT MET, where MET has been corrected for muons and the jet energy scale (JES)
 

Validation, N-1 plots

  • tracking has changed considerably between 16X and 22X and thus the quality cuts on tracks must be revisited

Revision 319 Feb 2009 - Main.FrankGolf

Line: 1 to 1
 
META TOPICPARENT name="FrankGolfSandbox"

Intro & executive summary

Changed:
<
<
This is a collection of tcMet performance & validation plots updating some of the info in the draft note xxxx.
>
>
This is a collection of tcMet performance & validation plots updating some of the info in our draft note.
 Samples used are summer & Fall 08 samples:
    • /ZJets-madgraph/Fall08_IDEAL_V9_reco-v2/GEN-SIM-RECO
    • /WW_2l/Summer08_IDEAL_V9_v2/GEN-SIM-RECO
Line: 190 to 190
 
META FILEATTACHMENT attachment="metcomp_pat_dymm.png" attr="" comment="" date="1235069137" name="metcomp_pat_dymm.png" path="metcomp_pat_dymm.png" size="15762" stream="metcomp_pat_dymm.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="dPhi_metcomp_wwee2.png" attr="" comment="" date="1235069244" name="dPhi_metcomp_wwee2.png" path="dPhi_metcomp_wwee2.png" size="8595" stream="dPhi_metcomp_wwee2.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="dPhi_metcomp_wwmm2.png" attr="" comment="" date="1235069259" name="dPhi_metcomp_wwmm2.png" path="dPhi_metcomp_wwmm2.png" size="8142" stream="dPhi_metcomp_wwmm2.png" user="Main.FrankGolf" version="1"
Added:
>
>
META FILEATTACHMENT attachment="cmspaper.pdf" attr="" comment="" date="1235074809" name="cmspaper.pdf" path="cmspaper.pdf" size="663968" stream="cmspaper.pdf" user="Main.FrankGolf" version="1"

Revision 219 Feb 2009 - Main.AviYagil

Line: 1 to 1
 
META TOPICPARENT name="FrankGolfSandbox"
Changed:
<
<

Definitions and notations

  • for comparison of MET in plots below, we require the following:
    • dimuon final state
      • two global muons
      • pt > 20 GeV
      • no additional leptons with pt > 20 GeV
    • dielectron final state
      • two electrons
      • pt > 20 GeV
      • no additional leptons with pt > 20 GeV

  • use the following samples
>
>

Intro & executive summary

This is a collection of tcMet performance & validation plots updating some of the info in the draft note xxxx. Samples used are summer & Fall 08 samples:
 
    • /ZJets-madgraph/Fall08_IDEAL_V9_reco-v2/GEN-SIM-RECO
    • /WW_2l/Summer08_IDEAL_V9_v2/GEN-SIM-RECO
Added:
>
>
For now, we looked at the performance in:
  • DY events looking for fake MET rejection
  • WW events for real MET performance
 
Changed:
<
<

N-1 plots

  • tracking has changed considerably between 16X and 22X and thus the quality cuts on tracks must be revisited

  • quality cuts in 16X were
    • nhits > 6
    • chi2/ndof < 5
    • abs(d0) < 0.05

  • changes between 16X and 22X
    • tracking improved at lower pt
    • changed the way hits are defined
      • can now have more than one hit per layer
    • displaced beamSpot requires correction
>
>
In Summary, we see:
  • ~x3 rejection of fake MET for a cut at 30GeV (similar to 1.6.x performance)
  • ~20% improvement of MET resolution in events with real MET (again similar to 1.6.x)
  • ~20% improvement in the determination of the direction of the MET as well.
 
Deleted:
<
<
  • below are new N-1 plots using ZJets sample
 
Changed:
<
<
  • Number of valid hits, N-1 plot
    nhits_nm1_new.png

  • tracking group recommends cut of nhits > 10

  • Normalized chi-squared, N-1 plot
    nchi2_nm1_new.png

  • Corrected impact parameter, N-1 plot
    d0corr_nm1_new.png

  • the new track quality cuts are:
    • nhits > 10
    • chi2/ndof < 4
    • abs(d0corr) < 0.1

Results

  • below are plots comparing tcMET and caloMET corrected muons
  • caloMET corrected for muons will serve as the baseline for all comparisons
  • met muon corrections are done using JetMETCorrections/Type1MET/python/metMuonCorrections_cff.py which corrects for global muons that also pass
    • nhits > 5
    • pt > 10 (from global fit), abs(eta) < 2.5
    • qoverp_error < 0.5
  • additionally, for comparison we require either
    • two global muons with pt > 20 GeV and no additional leptons with pt > 20 GeV
    • two electrons with pt > 20 GeV and no additional leptons pt > 20 GeV
>
>

Results for events with fake MET (DY):

  metcomp_dymm.png metcomp_dyee.png
Line: 82 to 38
 
tcMET 204 192
factor 3.7 3.4
Changed:
<
<
  • below are plots comparing met corrected for muons and tcMET from Summer08 WW sample generated with pythia and forced to two leptons
>
>

Results for events with real MET (WW):

  metcomp_wwmm.png metcomp_wwee.png
Line: 103 to 59
 
tcMET 2025 2271
factor 1.02 1.02
Deleted:
<
<
  • so, the MET distribution of WW is unchanged by tcMET - actually, we increase the number of events above our cut by a couple percent
 
  • although our goal is to reduce the tails of fake MET distributions, it is also interesting to look at what effect tcMET has on MET resolution
  • below are plots comparing the difference between corrected MET and generator MET for muon corrected MET and tcMET
Line: 114 to 68
 
  • in both cases, the mean is shifted closer to 0 and the RMS improves
    • the resolution improves by at least 20% in both final states
Changed:
<
<
  • below are the same plots a fraction of the generator MET
>
>
  • below are the same plots as a fraction of the generator MET
  dfMET_v_genMET_wwmm.png dfMET_v_genMET_wwee.png
Added:
>
>

Comparison of MET direction

  • below are plots of delta phi between corrected MET and generator MET for events with real MET

dPhi_metcomp_wwmm2.png dPhi_metcomp_wwee2.png

  • in both final states, direction resolution improves by ~20%
 

Comparison with patMET

Changed:
<
<
  • although met corrected for muons is our working baseline for comparison, it is interesting to compare tcMET to what one gets out of the box in the the PAT
    • patMET is muon corrected MET + JES
>
>
  • Since patMET is about to be used extensively, we compare to what one get from it, out of the box.
    • patMET is corrected for both muons and Jets
  metcomp_pat_dymm.png metcomp_pat_dyee.png
Line: 149 to 114
 
    • this result is in agreement with what we saw for muon+!JES corrections to MET in 16X
  • tcMET significantly reduces the tail of the MET distribution relative to both types of MET
Deleted:
<
<

Comparison of MET direction

 
Changed:
<
<
  • below are plots of delta phi between corrected MET and generator MET for WW in the dimuon final state
>
>

Definitions and notations

 
Changed:
<
<
dPhi_metcomp_wwmm2.png dPhi_metcomp_wwee2.png
>
>
  • caloMET corrected for muons will serve as the baseline for all comparisons

  • for comparison of MET in dilepton events, we require the following:
    • dimuon final state
      • two global muons
      • pt > 20 GeV
      • no additional leptons with pt > 20 GeV
    • dielectron final state
      • two electrons
      • pt > 20 GeV
      • no additional leptons with pt > 20 GeV
  • for comparison of MET in dijet events, we require the following:
...

  • we use the standard CMS muon correction scheme. Details: met muon corrections are done using JetMETCorrections/Type1MET/python/metMuonCorrections_cff.py which corrects for global muons that also pass
    • nhits > 5
    • pt > 10 (from global fit), abs(eta) < 2.5
    • qoverp_error < 0.5

Validation, N-1 plots

  • tracking has changed considerably between 16X and 22X and thus the quality cuts on tracks must be revisited

  • quality cuts in 16X were
    • nhits > 6
    • chi2/ndof < 5
    • abs(d0) < 0.05

  • changes between 16X and 22X
    • tracking improved at lower pt
    • changed the way hits are defined
      • can now have more than one hit per layer
    • displaced beamSpot requires correction

  • below are new N-1 plots using ZJets sample

  • Number of valid hits, N-1 plot
    nhits_nm1_new.png

  • tracking group recommends cut of nhits > 10

  • Normalized chi-squared, N-1 plot
    nchi2_nm1_new.png

  • Corrected impact parameter, N-1 plot
    d0corr_nm1_new.png

  • the new track quality cuts are:
    • nhits > 10
    • chi2/ndof < 4
    • abs(d0corr) < 0.1
 
Deleted:
<
<
  • in both final states, direction resolution improves by ~20%
  -- FrankGolf - 19 Feb 2009

Revision 119 Feb 2009 - Main.FrankGolf

Line: 1 to 1
Added:
>
>
META TOPICPARENT name="FrankGolfSandbox"

Definitions and notations

  • for comparison of MET in plots below, we require the following:
    • dimuon final state
      • two global muons
      • pt > 20 GeV
      • no additional leptons with pt > 20 GeV
    • dielectron final state
      • two electrons
      • pt > 20 GeV
      • no additional leptons with pt > 20 GeV

  • use the following samples
    • /ZJets-madgraph/Fall08_IDEAL_V9_reco-v2/GEN-SIM-RECO
    • /WW_2l/Summer08_IDEAL_V9_v2/GEN-SIM-RECO

N-1 plots

  • tracking has changed considerably between 16X and 22X and thus the quality cuts on tracks must be revisited

  • quality cuts in 16X were
    • nhits > 6
    • chi2/ndof < 5
    • abs(d0) < 0.05

  • changes between 16X and 22X
    • tracking improved at lower pt
    • changed the way hits are defined
      • can now have more than one hit per layer
    • displaced beamSpot requires correction

  • below are new N-1 plots using ZJets sample

  • Number of valid hits, N-1 plot
    nhits_nm1_new.png

  • tracking group recommends cut of nhits > 10

  • Normalized chi-squared, N-1 plot
    nchi2_nm1_new.png

  • Corrected impact parameter, N-1 plot
    d0corr_nm1_new.png

  • the new track quality cuts are:
    • nhits > 10
    • chi2/ndof < 4
    • abs(d0corr) < 0.1

Results

  • below are plots comparing tcMET and caloMET corrected muons
  • caloMET corrected for muons will serve as the baseline for all comparisons
  • met muon corrections are done using JetMETCorrections/Type1MET/python/metMuonCorrections_cff.py which corrects for global muons that also pass
    • nhits > 5
    • pt > 10 (from global fit), abs(eta) < 2.5
    • qoverp_error < 0.5
  • additionally, for comparison we require either
    • two global muons with pt > 20 GeV and no additional leptons with pt > 20 GeV
    • two electrons with pt > 20 GeV and no additional leptons pt > 20 GeV

metcomp_dymm.png metcomp_dyee.png

  • we observe significant reduction of the tail of the MET distribution for di-lepton final states, consistent with that seen previously in release 16X

  • table for cut MET > 30 GeV

MET muons electrons
metMuonCorr 5640 4921
tcMET 1852 1721
factor 3.1 2.9

  • table for cut MET > 50 GeV

MET muons electrons
metMuonCorr 748 644
tcMET 204 192
factor 3.7 3.4

  • below are plots comparing met corrected for muons and tcMET from Summer08 WW sample generated with pythia and forced to two leptons

metcomp_wwmm.png metcomp_wwee.png

  • WW decaying to two leptons has real MET via neutrinos produced along wtih the leptons thus tcMET should have little effect on the MET distribution for this process as observed above

  • table for cut MET > 30 GeV

MET muons electrons
metMuonCorr 3643 4289
tcMET 3722 4349
factor 1.02 1.01

  • table for cut MET > 50 GeV

MET muons electrons
metMuonCorr 1983 2216
tcMET 2025 2271
factor 1.02 1.02

  • so, the MET distribution of WW is unchanged by tcMET - actually, we increase the number of events above our cut by a couple percent

  • although our goal is to reduce the tails of fake MET distributions, it is also interesting to look at what effect tcMET has on MET resolution
  • below are plots comparing the difference between corrected MET and generator MET for muon corrected MET and tcMET

dMET_metcomp_wwmm2.png dMET_metcomp_wwee2.png

  • in both cases, the mean is shifted closer to 0 and the RMS improves
    • the resolution improves by at least 20% in both final states

  • below are the same plots a fraction of the generator MET

dfMET_v_genMET_wwmm.png dfMET_v_genMET_wwee.png

Comparison with patMET

  • although met corrected for muons is our working baseline for comparison, it is interesting to compare tcMET to what one gets out of the box in the the PAT
    • patMET is muon corrected MET + JES

metcomp_pat_dymm.png metcomp_pat_dyee.png

  • table for cut MET > 30 GeV

MET muons electrons
met_pat_metCor 4967 6371
metMuonCorr 5640 4921
tcMET 1852 1721
pat factor 2.7 3.7
muon factor 3.1 2.9

  • table for cut MET > 50 GeV

MET muons electrons
met_pat_metCor 593 714
metMuonCorr 748 644
tcMET 204 192
pat factor 2.9 3.7
muon factor 3.7 3.4

  • patMET performs better than muon corrected MET in the muon final state, but worse in the electron final state
    • this result is in agreement with what we saw for muon+!JES corrections to MET in 16X
  • tcMET significantly reduces the tail of the MET distribution relative to both types of MET

Comparison of MET direction

  • below are plots of delta phi between corrected MET and generator MET for WW in the dimuon final state

dPhi_metcomp_wwmm2.png dPhi_metcomp_wwee2.png

  • in both final states, direction resolution improves by ~20%

-- FrankGolf - 19 Feb 2009

META FILEATTACHMENT attachment="nhits_nm1_new.ps" attr="" comment="" date="1235067858" name="nhits_nm1_new.ps" path="nhits_nm1_new.ps" size="12471" stream="nhits_nm1_new.ps" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="nchi2_nm1_new.ps" attr="" comment="" date="1235067872" name="nchi2_nm1_new.ps" path="nchi2_nm1_new.ps" size="12838" stream="nchi2_nm1_new.ps" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="d0corr_nm1_new.png" attr="" comment="" date="1235067964" name="d0corr_nm1_new.png" path="d0corr_nm1_new.png" size="11770" stream="d0corr_nm1_new.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="nchi2_nm1_new.png" attr="" comment="" date="1235067976" name="nchi2_nm1_new.png" path="nchi2_nm1_new.png" size="11949" stream="nchi2_nm1_new.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="nhits_nm1_new.png" attr="" comment="" date="1235067988" name="nhits_nm1_new.png" path="nhits_nm1_new.png" size="11230" stream="nhits_nm1_new.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="metcomp_dyee.png" attr="" comment="" date="1235068419" name="metcomp_dyee.png" path="metcomp_dyee.png" size="12226" stream="metcomp_dyee.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="metcomp_dymm.png" attr="" comment="" date="1235068429" name="metcomp_dymm.png" path="metcomp_dymm.png" size="12753" stream="metcomp_dymm.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="metcomp_wwee.png" attr="" comment="" date="1235068449" name="metcomp_wwee.png" path="metcomp_wwee.png" size="13023" stream="metcomp_wwee.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="metcomp_wwmm.png" attr="" comment="" date="1235068461" name="metcomp_wwmm.png" path="metcomp_wwmm.png" size="14345" stream="metcomp_wwmm.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="dfMET_v_genMET_wwee.png" attr="" comment="" date="1235068658" name="dfMET_v_genMET_wwee.png" path="dfMET_v_genMET_wwee.png" size="10211" stream="dfMET_v_genMET_wwee.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="dfMET_v_genMET_wwmm.png" attr="" comment="" date="1235068670" name="dfMET_v_genMET_wwmm.png" path="dfMET_v_genMET_wwmm.png" size="10214" stream="dfMET_v_genMET_wwmm.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="dMET_metcomp_wwee2.png" attr="" comment="" date="1235068689" name="dMET_metcomp_wwee2.png" path="dMET_metcomp_wwee2.png" size="8905" stream="dMET_metcomp_wwee2.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="dMET_metcomp_wwmm2.png" attr="" comment="" date="1235068702" name="dMET_metcomp_wwmm2.png" path="dMET_metcomp_wwmm2.png" size="8662" stream="dMET_metcomp_wwmm2.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="metcomp_pat_dyee.png" attr="" comment="" date="1235069122" name="metcomp_pat_dyee.png" path="metcomp_pat_dyee.png" size="16157" stream="metcomp_pat_dyee.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="metcomp_pat_dymm.png" attr="" comment="" date="1235069137" name="metcomp_pat_dymm.png" path="metcomp_pat_dymm.png" size="15762" stream="metcomp_pat_dymm.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="dPhi_metcomp_wwee2.png" attr="" comment="" date="1235069244" name="dPhi_metcomp_wwee2.png" path="dPhi_metcomp_wwee2.png" size="8595" stream="dPhi_metcomp_wwee2.png" user="Main.FrankGolf" version="1"
META FILEATTACHMENT attachment="dPhi_metcomp_wwmm2.png" attr="" comment="" date="1235069259" name="dPhi_metcomp_wwmm2.png" path="dPhi_metcomp_wwmm2.png" size="8142" stream="dPhi_metcomp_wwmm2.png" user="Main.FrankGolf" version="1"
 
This site is powered by the TWiki collaboration platformCopyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback