CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/IORawData/CaloPatterns/python/HtrXmlPattern_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 htr_xml = cms.EDAnalyzer("HtrXmlPattern",
00004     #for non-existent electronics.
00005     presamples_per_event = cms.untracked.int32(4),
00006     sets_to_show = cms.untracked.int32(0), ##For a non-negative integer, dump an amount of data to stdout
00007 
00008     single_XML_file = cms.untracked.bool(True), ##When true, all patterns are placed in a single
00009 
00010     write_XML = cms.untracked.bool(True), ##When true, XML files containing the pattern data are produced.
00011 
00012     #XML file (otherwise one file per channel).
00013     file_tag = cms.untracked.string('example'),
00014     #that is proportional to this number.
00015     #For any negative number, dump all available data to stdout.
00016     #Non-zero values are typically used for debugging.
00017     show_errors = cms.untracked.bool(True),
00018     samples_per_event = cms.untracked.int32(10), ##Keep up to this many total samples
00019 
00020     #(including pre-samples) per event.
00021     write_root_file = cms.untracked.bool(True),
00022     user_output_directory = cms.untracked.string('/tmp') ##user_output_directory and will contain all produced files.
00023 
00024 )
00025 
00026