CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TopAnalysis_Defaults.py
Go to the documentation of this file.
2 
3 TopAnalyzer = cms.EDAnalyzer("BooLowMAnalyzer",
4  debug = cms.bool( False ),
5  IsMCTop = cms.bool( True ),
6  genEventSource = cms.InputTag('genEvt'),
7  muonSource = cms.InputTag('selectedLayer1Muons'),
8  electronSource = cms.InputTag('selectedLayer1Electrons'),
9  metSource = cms.InputTag('layer1METs'),
10  jetSource = cms.InputTag('selectedLayer1Jets'),
11  rootFilename = cms.string('TopAnalysis.root'),
12  PdfInfoTag = cms.untracked.InputTag("genEventPdfInfo"),
13  PdfSetName = cms.untracked.string("cteq66"), # Hard coded to use LHgrid
14  jetCuts = cms.PSet(
15  MinJetPt = cms.double( 30. ),
16  MaxJetEta = cms.double( 2.4),
17  ApplyAsymmetricCuts = cms.bool(False),
18  JES = cms.double( 1. ),
19  ApplyFlavorJEC = cms.bool(False)
20  ),
21  muonCuts = cms.PSet(
22  MinPt = cms.double( 20. ),
23  MaxEta = cms.double( 2.1 ),
24  ),
25  muonIsolation = cms.PSet(
26  RelIso = cms.double( 0.95 ),
27  MaxVetoEm = cms.double( 4.0 ),
28  MaxVetoHad = cms.double( 6.0 )
29  ),
30  electronCuts = cms.PSet(
31  MinPt = cms.double( 20. ),
32  MaxEta = cms.double( 2.4 ),
33  RelIso = cms.double( 0.9 )
34  ),
35  METCuts = cms. PSet(
36  MinMET = cms.double( 0. ),
37  Recalculate = cms.bool(False)
38  ),
39  UsebTagging = cms.bool(False),
40  UseMtopConstraint = cms.bool(True),
41  writeAscii = cms.bool( False),
42  asciiFilename = cms.string('TopAnalysis.txt'),
43  processOnlyEvent = cms.int32( -1 ),
44  makeJetLegoPlots = cms.bool( False ),
45  )
46