Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:13

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 htr_xml = cms.EDAnalyzer("HtrXmlPattern",
0004     #for non-existent electronics.
0005     presamples_per_event = cms.untracked.int32(4),
0006     sets_to_show = cms.untracked.int32(0), ##For a non-negative integer, dump an amount of data to stdout
0007 
0008     single_XML_file = cms.untracked.bool(True), ##When true, all patterns are placed in a single
0009 
0010     write_XML = cms.untracked.bool(True), ##When true, XML files containing the pattern data are produced.
0011 
0012     #XML file (otherwise one file per channel).
0013     file_tag = cms.untracked.string('example'),
0014     #that is proportional to this number.
0015     #For any negative number, dump all available data to stdout.
0016     #Non-zero values are typically used for debugging.
0017     show_errors = cms.untracked.bool(True),
0018     samples_per_event = cms.untracked.int32(10), ##Keep up to this many total samples
0019 
0020     #(including pre-samples) per event.
0021     write_root_file = cms.untracked.bool(True),
0022     user_output_directory = cms.untracked.string('/tmp') ##user_output_directory and will contain all produced files.
0023 
0024 )
0025 
0026