Skip to content

Commit

Permalink
Add source test
Browse files Browse the repository at this point in the history
  • Loading branch information
kjvbrt committed Aug 15, 2023
1 parent 69baa87 commit 32b6d36
Show file tree
Hide file tree
Showing 9 changed files with 168 additions and 76 deletions.
25 changes: 25 additions & 0 deletions analyzers/dataframe/FCCAnalyses/ReconstructedParticle.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@
#ifndef RECONSTRUCTEDPARTICLE_ANALYZERS_H
#define RECONSTRUCTEDPARTICLE_ANALYZERS_H

// STL
#include <cmath>
#include <vector>

// ROOT
#include "TLorentzVector.h"
#include "ROOT/RVec.hxx"

// EDM4hep
#include "edm4hep/ReconstructedParticleData.h"
#include "edm4hep/ReconstructedParticleCollection.h"
#include "edm4hep/MCRecoParticleAssociationCollection.h"
#include "edm4hep/ParticleIDData.h"

namespace FCCAnalyses{
Expand Down Expand Up @@ -80,6 +86,21 @@ namespace ReconstructedParticle{
};


/**
* \brief Analyzer to select reconstructed particles associated with a
* specified PDG ID.
*
* \param pdgID Desired PDG ID.
* \param chargeConjugateAllowed Whether to allow also charge conjugate
* PDG ID. Default value false --- charge conjugate not allowed.
*/
struct selPDG {
selPDG(const int pdgID, const bool chargeConjugateAllowed = false);
const int m_pdg;
const bool m_chargeConjugateAllowed;
edm4hep::ReconstructedParticleCollection operator() (
const edm4hep::MCRecoParticleAssociationCollection& inAssocColl);
};


/// return reconstructed particles
Expand All @@ -88,6 +109,10 @@ namespace ReconstructedParticle{
/// return the transverse momenta of the input ReconstructedParticles
ROOT::VecOps::RVec<float> get_pt(ROOT::VecOps::RVec<edm4hep::ReconstructedParticleData> in);

/// return the transverse momenta of the input ReconstructedParticles
ROOT::VecOps::RVec<float>
getPt(const edm4hep::ReconstructedParticleCollection& inParticles);

/// return the momenta of the input ReconstructedParticles
ROOT::VecOps::RVec<float> get_p(ROOT::VecOps::RVec<edm4hep::ReconstructedParticleData> in);

Expand Down
6 changes: 3 additions & 3 deletions analyzers/dataframe/FCCAnalyses/Track.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ namespace FCCAnalyses {
/**
* \brief Analyzer to select tracks associated with a specified PDG ID.
*
* \param pdgID Desired PDG ID.
* \param chargeConjugateAllowed Whether to allow also charge conjugate
* PDG ID. Default value false --- charge cojugate not allowed.
* \param pdgID Desired PDG ID.
* \param chargeConjugateAllowed Whether to allow also charge conjugate
* PDG ID. Default value false --- charge conjugate not allowed.
*/
struct selPDG {
selPDG(const int pdgID, const bool chargeConjugateAllowed = false);
Expand Down
41 changes: 41 additions & 0 deletions analyzers/dataframe/src/ReconstructedParticle.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,33 @@ ROOT::VecOps::RVec<edm4hep::ReconstructedParticleData> sel_charge::operator() (
}


selPDG::selPDG(const int pdg, const bool chargeConjugateAllowed) :
m_pdg(pdg), m_chargeConjugateAllowed(chargeConjugateAllowed) {};

edm4hep::ReconstructedParticleCollection selPDG::operator() (
const edm4hep::MCRecoParticleAssociationCollection& inAssocColl) {
edm4hep::ReconstructedParticleCollection result;
result.setSubsetCollection();

for (const auto& assoc: inAssocColl) {
const auto& particle = assoc.getSim();
if (m_chargeConjugateAllowed) {
if (std::abs(particle.getPDG() ) == std::abs(m_pdg)) {
result.push_back(assoc.getRec());
}
}
else {
if (particle.getPDG() == m_pdg) {
result.push_back(assoc.getRec());
}
}
}

return result;
}




resonanceBuilder::resonanceBuilder(float arg_resonance_mass) {m_resonance_mass = arg_resonance_mass;}
ROOT::VecOps::RVec<edm4hep::ReconstructedParticleData> resonanceBuilder::operator()(ROOT::VecOps::RVec<edm4hep::ReconstructedParticleData> legs) {
Expand Down Expand Up @@ -195,6 +222,20 @@ ROOT::VecOps::RVec<float> get_pt(ROOT::VecOps::RVec<edm4hep::ReconstructedPartic
return result;
}


ROOT::VecOps::RVec<float>
getPt(const edm4hep::ReconstructedParticleCollection& inParticles) {
ROOT::VecOps::RVec<float> result;

for (const auto& particle: inParticles) {
result.push_back(std::sqrt(std::pow(particle.getMomentum().x, 2) +
std::pow(particle.getMomentum().y, 2)));
}

return result;
}


ROOT::VecOps::RVec<edm4hep::ReconstructedParticleData> merge(ROOT::VecOps::RVec<edm4hep::ReconstructedParticleData> x, ROOT::VecOps::RVec<edm4hep::ReconstructedParticleData> y) {
//to be keept as ROOT::VecOps::RVec
std::vector<edm4hep::ReconstructedParticleData> result;
Expand Down
12 changes: 5 additions & 7 deletions e4hsource/src/EDM4hepLegacySource.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,11 @@ namespace FCCAnalyses {
auto legacyMetadata = infile.Get("metadata");
infile.Close();
if (!legacyMetadata) {
throw std::runtime_error(
"EDM4hepLegacySource: Provided file is missing legacy podio "
"metadata!");
std::string errMsg = "EDM4hepLegacySource: ";
errMsg += "Provided file is missing podio metadata!\n";
errMsg += " ";
errMsg += filePath.data();
throw std::runtime_error(errMsg);
}
}

Expand All @@ -73,10 +75,6 @@ namespace FCCAnalyses {
// << std::endl;
podio::ROOTLegacyReader podioLegacyReader;

std::vector<std::unique_ptr<podio::ROOTLegacyReader>> readers;
readers.emplace_back(std::make_unique<podio::ROOTLegacyReader>());


podioLegacyReader.openFiles(m_filePathList);
nEventsInFiles = podioLegacyReader.getEntries("events");
frame = podio::Frame(podioLegacyReader.readEntry("events", 0));
Expand Down
57 changes: 0 additions & 57 deletions e4hsource/test/histmaker_legacy_source.py

This file was deleted.

49 changes: 49 additions & 0 deletions e4hsource/test/histmaker_source.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# list of processes (mandatory)
processList = {
'p8_ee_WW_ecm240': {'output': 'p8_ee_WW_ecm240_out'}
}

# Production tag when running over EDM4Hep centrally produced events, this
# points to the yaml files for getting sample statistics (mandatory)
prodTag = "FCCee/winter2023/IDEA/"

# Link to the dictonary that contains all the cross section informations
# etc... (mandatory)
procDict = "FCCee_procDict_winter2023_IDEA.json"

# Optional: output directory, default is local running directory
outputDir = "."

# Ncpus, default is 4, -1 uses all cores available
nCPUS = -1

# scale the histograms with the cross-section and integrated luminosity
# define some binning for various histograms
bins_pt = (20, 0, 200)

# How to read input files
useDataSource = True

testFile = '/eos/experiment/fcc/ee/generation/DelphesEvents/winter2023/' \
'IDEA/p8_ee_WW_ecm240/events_192112516.root'

# build_graph function that contains the analysis logic, cuts and histograms
# (mandatory)
def build_graph(df, dataset):

results = []
df = df.Define("weight", "1.0")
weightsum = df.Sum("weight")

df = df.Define(
"electron_truth",
"FCCAnalyses::ReconstructedParticle::selPDG(11)(MCRecoAssociations)")

df = df.Define(
"electron_truth_pt",
"FCCAnalyses::ReconstructedParticle::getPt(electron_truth)")

results.append(df.Histo1D(("h_electron_truth_pt", "", *bins_pt),
"electron_truth_pt"))

return results, weightsum
48 changes: 41 additions & 7 deletions python/FCCAnalysisRun.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def initialize(args, rdfModule, analysisFile):

#__________________________________________________________
def runRDF(rdfModule, inputlist, outFile, nevt, args):
if args.use_source:
if args.use_data_source:
print('----> Info: Loading events through EDM4hep RDataSource...')
ROOT.gSystem.Load("libe4hsource")
if ROOT.loadEDM4hepSource():
Expand Down Expand Up @@ -356,16 +356,25 @@ def apply_filepath_rewrites(filepath):
return filepath


#__________________________________________________________
# __________________________________________________________
def runLocal(rdfModule, infile_list, args):
# Create list of files to be processed
print ('----> Info: Creating dataframe object from files: ', )
print('----> Info: Creating dataframe object from files: ', )

# Check if to use RDataSource to load the events
use_data_source = getElement(rdfModule, "useDataSource")
if use_data_source:
args.use_data_source = True
use_legacy_source = getElement(rdfModule, "useLegacyDataSource")
if use_legacy_source:
args.use_legacy_source = True

file_list = ROOT.vector('string')()
nevents_orig = 0 # Amount of events processed in previous stage (= 0 if it is the first stage)
nevents_local = 0 # The amount of events in the input file(s)
for filepath in infile_list:

if not args.use_source:
if not args.use_data_source and not args.use_legacy_source:
filepath = apply_filepath_rewrites(filepath)

file_list.push_back(filepath)
Expand Down Expand Up @@ -888,17 +897,42 @@ def runHistmaker(args, rdfModule, analysisFile):
evtcounts = [] # event count of the input file
eventsProcessedDict = {} # number of events processed per process, in a potential previous step

# Check whether to load events through datasource
use_legacy_source = getElement(rdfModule, 'useLegacyDataSource')
if use_legacy_source:
args.use_legacy_source = True
use_data_source = getElement(rdfModule, 'useDataSource')
if use_data_source:
args.use_data_source = True

if args.test:
testFile = getElement(rdfModule, "testFile")
if testFile:
print('----> Info: Will use the following test file:')
print(' ' + testFile)

for process in processList:
fileList, eventList = getProcessInfo(process, getElement(rdfModule,"prodTag"), getElement(rdfModule, "inputDir"))
prod_tag = getElement(rdfModule, 'prodTag')
input_dir = getElement(rdfModule, 'inputDir')
fileList, eventList = getProcessInfo(process, prod_tag, input_dir)
if len(fileList) == 0:
print('----> ERROR: No files to process. Exit')
sys.exit(3)

if args.test:
testFile = getElement(rdfModule, "testFile")
if testFile:
print('----> Info: Will use 100 events from the following '
'test file:')
print(' ' + testFile)
fileList = [testFile]
eventList = [100]

# get the number of events processed, in a potential previous step
fileListRoot = ROOT.vector('string')()
nevents_meta = 0 # amount of events processed in previous stage (= 0 if it is the first stage)
for fileName in fileList:
if not (args.use_source or args.use_legacy_source):
if not args.use_data_source and not args.use_legacy_source:
fileName = apply_filepath_rewrites(fileName)
fileListRoot.push_back(fileName)
tf=ROOT.TFile.Open(str(fileName),"READ")
Expand All @@ -925,7 +959,7 @@ def runHistmaker(args, rdfModule, analysisFile):
if fraction<1:fileList = getsubfileList(fileList, eventList, fraction)
print ('----> Info: Add process {} with fraction={}, nfiles={}, output={}, chunks={}'.format(process, fraction, len(fileList), output, chunks))

if args.use_source:
if args.use_data_source:
print('----> Info: Loading events through EDM4hep RDataSource...')
ROOT.gSystem.Load("libe4hsource")
if ROOT.loadEDM4hepSource():
Expand Down
5 changes: 3 additions & 2 deletions python/Parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ def setup_run_parser(parser):
help='specify max number of events to process')
parser.add_argument('--test', action='store_true', default=False,
help='run over the test file')
parser.add_argument('--use-source', action='store_true', default=False,
help='use EDM4hep RDataSource to construct dataframe')
parser.add_argument(
'--use-data-source', action='store_true', default=False,
help='use EDM4hep RDataSource to construct dataframe')
parser.add_argument(
'--use-legacy-source', action='store_true', default=False,
help='use EDM4hep Legacy RDataSource to construct dataframe')
Expand Down
1 change: 1 addition & 0 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ add_integration_test("examples/FCCee/higgs/mH-recoil/mumu/analysis_stage1.py")
add_integration_test("examples/FCCee/flavour/Bc2TauNu/analysis_B2TauNu_truth.py")
add_integration_test("examples/FCCee/test/jet_constituents.py")
add_integration_test("examples/FCCee/vertex_lcfiplus/analysis_V0.py")
add_integration_test("e4hsource/test/histmaker_source.py")

# TODO: make this test run in the spack build environment
#add_generic_test(build_new_case_study "tests/build_new_case_study.sh")

0 comments on commit 32b6d36

Please sign in to comment.