Skip to content

Commit

Permalink
set preliminary xrootd path to publiceos
Browse files Browse the repository at this point in the history
  • Loading branch information
stwunsch committed May 23, 2019
1 parent f8494a2 commit fb0638b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dimuonSpectrum.C
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ void dimuonSpectrum() {
ROOT::EnableImplicitMT();

// Create dataframe from NanoAOD files
ROOT::RDataFrame df("Events", "Run2012BC_DoubleMuParked.root");
ROOT::RDataFrame df("Events", "root://eospublic.cern.ch//eos/opendata/cms/upload/stefan/Run2012BC_DoubleMuParked.root");

// Select events with exactly two muons
auto df_2mu = df.Filter("nMuon == 2", "Events with exactly two muons");
Expand Down
2 changes: 1 addition & 1 deletion dimuonSpectrum.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ROOT.ROOT.EnableImplicitMT()

# Create dataframe from NanoAOD files
df = ROOT.RDataFrame("Events", "Run2012BC_DoubleMuParked.root")
df = ROOT.RDataFrame("Events", "root://eospublic.cern.ch//eos/opendata/cms/upload/stefan/Run2012BC_DoubleMuParked.root")

# Select events with exactly two muons
df_2mu = df.Filter("nMuon == 2", "Events with exactly two muons")
Expand Down

0 comments on commit fb0638b

Please sign in to comment.