ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/ssong/copy_cfg.py
Revision: 1.1
Committed: Thu Apr 1 11:30:09 2010 UTC (15 years, 1 month ago) by shsong79
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Log Message:
first commit

File Contents

# User Rev Content
1 shsong79 1.1 import FWCore.ParameterSet.Config as cms
2    
3     process = cms.Process("COPY")
4     process.load("FWCore.MessageLogger.MessageLogger_cfi")
5    
6     process.maxEvents = cms.untracked.PSet(
7     input = cms.untracked.int32(10)
8     )
9     process.source = cms.Source("PoolSource",
10     # fileNames = cms.untracked.vstring('/store/data/Commissioning08/BarrelMuon/RECO/CRUZET4_v1/000/057/686/80C0BD1C-286F-DD11-8434-000423DD2F34.root')
11     fileNames = cms.untracked.vstring(
12     'rfio:///castor/cern.ch/user/j/jhgoh/HiggsAnalysis/DoublyChargedHiggs/CMSSW_3_2_7/PYTHIA6_HppMuMu_M140_10TeV_MC_31X_V8/GEN_SIM_DIGI_L1_DIGI2RAW_HLT/GEN_SIM_DIGI_L1_DIGI2RAW_HLT_1.root ./'
13     ),
14     secondaryFileNames = cms.untracked.vstring(
15     )
16     )
17    
18     process.copyAll = cms.OutputModule("PoolOutputModule",
19     fileName = cms.untracked.string('/tmp/jhgoh/copy.root'),
20     outputCommands = cms.untracked.vstring('keep *',)
21     )
22    
23     process.out = cms.EndPath(process.copyAll)
24    
25