-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40706 from AnnikaStein/ParT_DataFormats_from-CMSS…
…W_13_0_0_pre3 RobustParticleTransformer in `DataFormats/BTauReco`
- Loading branch information
Showing
7 changed files
with
88 additions
and
4 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
22 changes: 22 additions & 0 deletions
22
DataFormats/BTauReco/interface/ParticleTransformerAK4Features.h
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,22 @@ | ||
#ifndef DataFormats_BTauReco_ParticleTransformerAK4Features_h | ||
#define DataFormats_BTauReco_ParticleTransformerAK4Features_h | ||
|
||
#include "DataFormats/BTauReco/interface/SecondaryVertexFeatures.h" | ||
#include "DataFormats/BTauReco/interface/NeutralCandidateFeatures.h" | ||
#include "DataFormats/BTauReco/interface/ChargedCandidateFeatures.h" | ||
|
||
#include <vector> | ||
|
||
namespace btagbtvdeep { | ||
|
||
class ParticleTransformerAK4Features { | ||
public: | ||
std::vector<SecondaryVertexFeatures> sv_features; | ||
|
||
std::vector<NeutralCandidateFeatures> n_pf_features; | ||
std::vector<ChargedCandidateFeatures> c_pf_features; | ||
}; | ||
|
||
} // namespace btagbtvdeep | ||
|
||
#endif //DataFormats_BTauReco_ParticleTransformerAK4Features_h |
15 changes: 15 additions & 0 deletions
15
DataFormats/BTauReco/interface/ParticleTransformerAK4TagInfo.h
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,15 @@ | ||
#ifndef DataFormats_BTauReco_ParticleTransformerAK4TagInfo_h | ||
#define DataFormats_BTauReco_ParticleTransformerAK4TagInfo_h | ||
|
||
#include "DataFormats/BTauReco/interface/ParticleTransformerAK4Features.h" | ||
#include "DataFormats/BTauReco/interface/FeaturesTagInfo.h" | ||
|
||
namespace reco { | ||
|
||
typedef FeaturesTagInfo<btagbtvdeep::ParticleTransformerAK4Features> ParticleTransformerAK4TagInfo; | ||
|
||
DECLARE_EDM_REFS(ParticleTransformerAK4TagInfo) | ||
|
||
} // namespace reco | ||
|
||
#endif // DataFormats_BTauReco_ParticleTransformerAK4TagInfo_h |
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
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