CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HtrXmlPattern_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 htr_xml = cms.EDAnalyzer("HtrXmlPattern",
4  #for non-existent electronics.
5  presamples_per_event = cms.untracked.int32(4),
6  sets_to_show = cms.untracked.int32(0), ##For a non-negative integer, dump an amount of data to stdout
7 
8  single_XML_file = cms.untracked.bool(True), ##When true, all patterns are placed in a single
9 
10  write_XML = cms.untracked.bool(True), ##When true, XML files containing the pattern data are produced.
11 
12  #XML file (otherwise one file per channel).
13  file_tag = cms.untracked.string('example'),
14  #that is proportional to this number.
15  #For any negative number, dump all available data to stdout.
16  #Non-zero values are typically used for debugging.
17  show_errors = cms.untracked.bool(True),
18  samples_per_event = cms.untracked.int32(10), ##Keep up to this many total samples
19 
20  #(including pre-samples) per event.
21  write_root_file = cms.untracked.bool(True),
22  user_output_directory = cms.untracked.string('/tmp') ##user_output_directory and will contain all produced files.
23 
24 )
25 
26