Skip to content

Commit

Permalink
unification in a single level
Browse files Browse the repository at this point in the history
  • Loading branch information
Cesare committed Dec 2, 2013
1 parent 5283980 commit 25ecc78
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 170 deletions.
142 changes: 0 additions & 142 deletions DQMAnalyzer/DQMAnalyzerSTEP1/python/ConfFile_cfg.py

This file was deleted.

16 changes: 0 additions & 16 deletions DQMAnalyzer/DQMAnalyzerSTEP2/plugins/BuildFile.xml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<use name="FWCore/Framework"/>
<use name="FWCore/PluginManager"/>
<use name="FWCore/ParameterSet"/>
<use name="FWCore/ServiceRegistry"/>
<use name="RecoMuon/TrackingTools"/>
<use name="TrackingTools/TransientTrack"/>

Expand Down Expand Up @@ -32,6 +33,13 @@
<use name="DataFormats/TrackReco"/>
<use name="DataFormats/TrajectorySeed"/>
<use name="DQMServices/Core"/>
<use name="DQMServices/ClientConfig"/>

<use name="DataFormats/FEDRawData"/>
<use name="CondFormats/DataRecord"/>
<use name="CondFormats/RunInfo"/>
<use name="CondCore/DBCommon"/>
<use name="CondCore/PopCon"/>

<use name="rootcore"/>
<use name="rootgraphics"/>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

DQMGEMSecondStep = cms.EDAnalyzer('DQMAnalyzerSTEP2',
GlobalFolder = cms.untracked.string("GEMBasicPlots/"),
LocalFolder = cms.untracked.vstring("5GeV","10GeV","50GeV","100GeV","200GeV","500GeV","1000GeV"),
#LocalFolder = cms.untracked.vstring("5GeV","10GeV","50GeV","100GeV","200GeV","500GeV","1000GeV"),
LocalFolder = cms.untracked.vstring("200GeV"),
SaveFile = cms.untracked.bool(True),
NameFile = cms.untracked.string("GEMPlots.root")
)
39 changes: 39 additions & 0 deletions DQMAnalyzer/python/ConfFile_step1_cfg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import FWCore.ParameterSet.Config as cms

process = cms.Process("STEP1")

process.load('Configuration.StandardSequences.Services_cff')
process.load('FWCore.MessageService.MessageLogger_cfi')
process.load('Configuration.Geometry.GeometryExtended2019Reco_cff')
process.load('Configuration.StandardSequences.MagneticField_38T_cff')
process.load('Configuration.StandardSequences.EndOfProcess_cff')
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
process.load("DQMServices.Components.MEtoEDMConverter_cfi")
process.load("DQMServices.Core.DQM_cfg")
from Configuration.AlCa.GlobalTag import GlobalTag
process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:upgrade2019', '')

process.load("GEMCode.DQMAnalyzer.CfiFile_step1_cfi")

process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )

process.source = cms.Source("PoolSource",
# replace 'myfile.root' with the source file you want to use
fileNames = cms.untracked.vstring(

'file:/lustre/cms/store/user/calabria/calabria_SingleMuPt200_GEN-SIM-DIGI-RECO_CMSSW_6_2_0_SLHC1_v2/calabria_SingleMuPt200_RECOGEM_STDRECO_CMSSW_6_2_0_SLHC1/9d4158c7f7160e8742c9656b5dc7afdf/out_reco_std_100_1_cSy.root',

)
)

process.FEVT = cms.OutputModule("PoolOutputModule",
outputCommands = cms.untracked.vstring('keep *_MEtoEDMConverter_*_*'),
fileName = cms.untracked.string('first_200GeV.root')
)

process.p = cms.Path(process.GLBMuonAnalyzerWithGEMs * process.MEtoEDMConverter)
process.outpath = cms.EndPath(process.FEVT)

process.DQM.collectorHost = ''
process.DQM.collectorPort = 9090
process.DQM.debug = False
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
process = cms.Process("STEP2")

process.load('Configuration.StandardSequences.Services_cff')
process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi')
process.load('FWCore.MessageService.MessageLogger_cfi')
process.load('Configuration.EventContent.EventContent_cff')
process.load('SimGeneral.MixingModule.mixNoPU_cfi')
process.load('Configuration.Geometry.GeometryExtended2019Reco_cff')
process.load('Configuration.StandardSequences.MagneticField_38T_cff')
process.load('Configuration.StandardSequences.EndOfProcess_cff')
Expand All @@ -16,21 +13,15 @@
from Configuration.AlCa.GlobalTag import GlobalTag
process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:upgrade2019', '')

process.load("DQMAnalyzer.DQMAnalyzerSTEP2.CfiFile_cfi")
process.load("GEMCode.DQMAnalyzer.CfiFile_step2_cfi")

process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )

process.source = cms.Source("PoolSource",
# replace 'myfile.root' with the source file you want to use
fileNames = cms.untracked.vstring(

'file:/lustre/cms/store/user/calabria/DQMGem/SingleMuPt5/edm_SingleMuPt5_1.root',
'file:/lustre/cms/store/user/calabria/DQMGem/SingleMuPt10/edm_SingleMuPt10_1.root',
'file:/lustre/cms/store/user/calabria/DQMGem/SingleMuPt50/edm_SingleMuPt50_1.root',
'file:/lustre/cms/store/user/calabria/DQMGem/SingleMuPt100/edm_SingleMuPt100_1.root',
'file:/lustre/cms/store/user/calabria/DQMGem/SingleMuPt200/edm_SingleMuPt200_1.root',
'file:/lustre/cms/store/user/calabria/DQMGem/SingleMuPt500/edm_SingleMuPt500_1.root',
'file:/lustre/cms/store/user/calabria/DQMGem/SingleMuPt1000/edm_SingleMuPt1000_1.root',
'file:first_200GeV.root',

)
)
Expand Down

0 comments on commit 25ecc78

Please sign in to comment.