CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/TopQuarkAnalysis/Examples/python/HypothesisAnalyzer_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # make simple analysis plots for a comparison
00005 # between event hypothesis from different algorithms
00006 #
00007 
00008 # initialize/configure analyzers
00009 from TopQuarkAnalysis.Examples.HypothesisAnalyzer_cfi import *
00010 analyzeGenMatch      = analyzeHypothesis.clone(hypoClassKey = "kGenMatch")
00011 analyzeMaxSumPtWMass = analyzeHypothesis.clone(hypoClassKey = "kMaxSumPtWMass")
00012 analyzeKinFit        = analyzeHypothesis.clone(hypoClassKey = "kKinFit")
00013 
00014 # define sequence
00015 analyzeHypotheses = cms.Sequence(analyzeGenMatch *
00016                                  analyzeMaxSumPtWMass *
00017                                  analyzeKinFit)