-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
first draft version of analysis output
- Loading branch information
Showing
7 changed files
with
89 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from BristolAnalysis.NTupleTools.rootTupleMaker_cfi import rootTupleMaker | ||
analysisTree = rootTupleMaker.clone( | ||
treeName='FitVariables', | ||
outputCommands=[ | ||
'drop *', | ||
'keep bool_topPairEPlusJetsSelectionTagging_*_*', | ||
'keep *_globalVariablesElectron_*_*', | ||
], | ||
) | ||
|
||
from BristolAnalysis.NTupleTools.analysis.variableProducer_cfi import variableProducer | ||
globalVariablesElectron = variableProducer.clone( | ||
channel='electron', | ||
prefix='EPlusJets.', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
variableProducer = cms.EDProducer( | ||
'VariableProducer', | ||
cleanedJets=cms.InputTag('goodJets'), | ||
cleanedBJets=cms.InputTag('goodBJets'), | ||
signalElectrons=cms.InputTag('goodElectrons'), | ||
signalMuons=cms.InputTag('goodMuons'), | ||
met=cms.InputTag('slimmedMETs'), | ||
minJetPtForHT=cms.double(20.), | ||
channel=cms.string('electron'), | ||
prefix=cms.string('prefix.'), | ||
suffix=cms.string(''), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
rootTupleMaker = cms.EDAnalyzer( | ||
"RootTupleMakerV2_Tree", | ||
treeName=cms.string('test'), | ||
outputCommands=cms.untracked.vstring( | ||
'drop *', | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters