-
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 #5 from andrzejnovak/switch
Making sure of backwards compatibility for DDBFeatures&JetTags
- Loading branch information
Showing
3 changed files
with
50 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#ifndef DataFormats_BTauReco_DeepDoubleBFeatures_h | ||
#define DataFormats_BTauReco_DeepDoubleBFeatures_h | ||
|
||
#include <vector> | ||
|
||
#include "DataFormats/BTauReco/interface/JetFeatures.h" | ||
#include "DataFormats/BTauReco/interface/SecondaryVertexFeatures.h" | ||
#include "DataFormats/BTauReco/interface/BoostedDoubleSVTagInfoFeatures.h" | ||
#include "DataFormats/BTauReco/interface/ChargedCandidateFeatures.h" | ||
|
||
namespace btagbtvdeep { | ||
|
||
class DeepDoubleBFeatures { | ||
|
||
public: | ||
JetFeatures jet_features; | ||
BoostedDoubleSVTagInfoFeatures tag_info_features; | ||
|
||
std::vector<SecondaryVertexFeatures> sv_features; | ||
|
||
std::vector<ChargedCandidateFeatures> c_pf_features; | ||
|
||
std::size_t npv; // used by deep flavour | ||
}; | ||
|
||
|
||
} | ||
|
||
#endif //DataFormats_BTauReco_DeepDoubleBFeatures_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