ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/test/GenExample.cfg
Revision: 1.1
Committed: Tue May 27 20:30:15 2008 UTC (16 years, 11 months ago) by loizides
Branch: MAIN
Log Message:
TreeFiller example

File Contents

# User Rev Content
1 loizides 1.1 # $Id:$
2    
3     process Gen =
4     {
5     untracked PSet maxEvents = {untracked int32 input = 1000}
6    
7     include "FWCore/MessageService/data/MessageLogger.cfi"
8     include "Configuration/StandardSequences/data/SimulationRandomNumberGeneratorSeeds.cff"
9     include "SimGeneral/HepPDTESSource/data/pythiapdt.cfi"
10    
11     include "Configuration/Generator/data/PythiaUESettings.cfi"
12     source = PythiaSource
13     {
14     untracked int32 pythiaPylistVerbosity = 0
15     untracked bool pythiaHepMCVerbosity = false
16     untracked int32 maxEventsToPrint = 0
17     untracked double filterEfficiency = 1.
18    
19     PSet PythiaParameters = {
20     vstring parameterSets = {
21     "pythiaUESettings",
22     "processParameters"
23     }
24    
25     using pythiaUESettingsBlock
26     vstring processParameters = {
27     'MSEL=1 ! QCD hight pT processes',
28     'CKIN(3)=50. ! minimum pt hat for hard interactions',
29     'CKIN(4)=-1. ! maximum pt hat for hard interactions'
30     }
31     }
32     }
33    
34     include "Configuration/StandardSequences/data/VtxSmearedBetafuncEarlyCollision.cff"
35     include "Configuration/StandardSequences/data/Generator.cff"
36    
37     service = TreeService {
38     untracked vstring treeNames = { "MitTree" }
39     untracked vstring fileNames = { "mittreefile" }
40     untracked vstring pathNames = { "." }
41     untracked vuint32 maxSizes = { 1024 }
42     untracked vuint32 compLevels = { 9 }
43     untracked vuint32 splitLevels = { 99 }
44     untracked vuint32 brSizes = { 32000 }
45     }
46    
47     module mygenfiller = FillGenParts {
48     }
49    
50     path p0 = { pgen, mygenfiller }
51    
52     include "Configuration/EventContent/data/EventContent.cff"
53     module FEVT = PoolOutputModule
54     {
55     using FEVTSIMEventContent
56     untracked string fileName = "gen.root"
57     }
58    
59     endpath outpath = {FEVT}
60    
61     schedule = {p0, outpath}
62     }