-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reimplementing analyzers needed for the stage1 of the example analysis
- Loading branch information
Showing
11 changed files
with
517 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,30 @@ | ||
#ifndef DEFINES_ANALYZERS_H | ||
#define DEFINES_ANALYZERS_H | ||
|
||
// std | ||
#include <cmath> | ||
#include <math.h> | ||
#include <vector> | ||
|
||
// ROOT | ||
#include "ROOT/RVec.hxx" | ||
#include "TLorentzVector.h" | ||
|
||
// EDM4hep | ||
#include "edm4hep/MCParticleData.h" | ||
#include "edm4hep/ParticleIDData.h" | ||
#include "edm4hep/ReconstructedParticleData.h" | ||
|
||
/** | ||
* @brief FCC analyzers collection. | ||
*/ | ||
namespace FCCAnalyses { | ||
using Vec_b = ROOT::VecOps::RVec<bool>; | ||
using Vec_d = ROOT::VecOps::RVec<double>; | ||
using Vec_f = ROOT::VecOps::RVec<float>; | ||
using Vec_i = ROOT::VecOps::RVec<int>; | ||
using Vec_ui = ROOT::VecOps::RVec<unsigned int>; | ||
using Vec_b = ROOT::VecOps::RVec<bool>; | ||
using Vec_d = ROOT::VecOps::RVec<double>; | ||
using Vec_f = ROOT::VecOps::RVec<float>; | ||
using Vec_i = ROOT::VecOps::RVec<int>; | ||
using Vec_ui = ROOT::VecOps::RVec<unsigned int>; | ||
|
||
using rp = edm4hep::ReconstructedParticleData; | ||
using Vec_rp = ROOT::VecOps::RVec<edm4hep::ReconstructedParticleData>; | ||
using Vec_mc = ROOT::VecOps::RVec<edm4hep::MCParticleData>; | ||
using Vec_tlv = ROOT::VecOps::RVec<TLorentzVector>; | ||
using rp = edm4hep::ReconstructedParticleData; | ||
using Vec_rp = ROOT::VecOps::RVec<edm4hep::ReconstructedParticleData>; | ||
using Vec_mc = ROOT::VecOps::RVec<edm4hep::MCParticleData>; | ||
using Vec_tlv = ROOT::VecOps::RVec<TLorentzVector>; | ||
} // namespace FCCAnalyses | ||
|
||
namespace recoParticle = FCCAnalyses::ReconstructedParticle::Source; | ||
|
||
#endif |
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
Oops, something went wrong.