CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HypothesisAnalyzer_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # make simple analysis plots for a comparison
5 # between event hypothesis from different algorithms
6 #
7 
8 # initialize/configure analyzers
10 analyzeGenMatch = analyzeHypothesis.clone(hypoClassKey = "kGenMatch")
11 analyzeMaxSumPtWMass = analyzeHypothesis.clone(hypoClassKey = "kMaxSumPtWMass")
12 analyzeKinFit = analyzeHypothesis.clone(hypoClassKey = "kKinFit")
13 
14 # define sequence
15 analyzeHypotheses = cms.Sequence(analyzeGenMatch *
16  analyzeMaxSumPtWMass *
17  analyzeKinFit)