Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:26:14

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 kinSolutionTtFullLepEvent = cms.EDProducer("TtFullLepKinSolutionProducer",
0004     jets = cms.InputTag("selectedPatJets"),    
0005     electrons = cms.InputTag("selectedPatElectrons"),
0006     muons = cms.InputTag("selectedPatMuons"),       
0007     mets = cms.InputTag("patMETs"),
0008     
0009     # ------------------------------------------------
0010     # specify jet correction step and flavor correction
0011     # ------------------------------------------------
0012     jetCorrectionLevel = cms.string("L3Absolute"),
0013 
0014 
0015     # ------------------------------------------------
0016     # maximum number of jets to be considered in the
0017     # jet combinatorics (has to be >= 2
0018     # ------------------------------------------------
0019     maxNJets = cms.int32(2),
0020     
0021     #-------------------------------------------------       
0022     # maximum number of jet combinations finally
0023     # written into the event, starting from the "best"
0024     # (has to be >= 1, can be set to -1 if you want to 
0025     # take all)
0026     #-------------------------------------------------
0027     maxNComb = cms.int32(1),
0028 
0029     # ------------------------------------------------
0030     # Select if also solutions with wrong charge lepton 
0031     # combinations are to be looked for, e.g. solutions
0032     # with 2 equally charged leptons
0033     # ------------------------------------------------
0034     searchWrongCharge = cms.bool(False),
0035     
0036     # ------------------------------------------------
0037     # Channel(s) for which solutions are searched
0038     # ------------------------------------------------
0039     eeChannel     = cms.bool(False),
0040     emuChannel    = cms.bool(False),
0041     mumuChannel   = cms.bool(False),
0042     etauChannel   = cms.bool(False),
0043     mutauChannel  = cms.bool(False),
0044     tautauChannel = cms.bool(False),
0045     
0046     # ------------------------------------------------
0047     # settings for the KinSolver
0048     # ------------------------------------------------    
0049     tmassbegin = cms.double(100),
0050     tmassend   = cms.double(300),
0051     tmassstep  = cms.double(  1),
0052     
0053     # ------------------------------------------------
0054     # neutrino reference spectrum
0055     # five parameters:
0056     #   norm, 
0057     #   position nu, 
0058     #   width nu,     
0059     #   postion nubar, 
0060     #   width nubar
0061     # ------------------------------------------------  
0062     neutrino_parameters = cms.vdouble(30.7137,
0063                                       56.2880,
0064                       23.0744,
0065                       59.1015,
0066                       24.9145)
0067       
0068 )
0069 
0070