Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:42

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from SimGeneral.MixingModule.mixObjects_cfi import *
0004 
0005 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0006 mixCollectionValidation = DQMEDAnalyzer('MixCollectionValidation',
0007     outputFile = cms.string('histosMixCollStep2MM4sources.root'),
0008     minBunch = cms.int32(-12),
0009     maxBunch = cms.int32(3),
0010     verbose = cms.untracked.bool(False),                                       
0011     mixObjects = cms.PSet(
0012         mixCH = cms.PSet(                   
0013             mixCaloHits                     
0014         ),                      
0015         mixTracks = cms.PSet(       
0016             mixSimTracks                    
0017         ),                      
0018         mixVertices = cms.PSet(     
0019             mixSimVertices                  
0020         ),                      
0021         mixSH = cms.PSet(           
0022             mixSimHits                      
0023         ),                      
0024         mixHepMC = cms.PSet(        
0025             mixHepMCProducts                
0026         )                       
0027     )                               
0028 )