ATLAS Offline Software
Loading...
Searching...
No Matches
HbbGraphConfig.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3*/
4
5// Note: please don't include any ROOT in here (i.e. xAOD::Jet or
6// anything from the EDM), it's not a stable dependency (in particular
7// the TString overloads change between releases).
8
9#ifndef HBB_CONFIG_H
10#define HBB_CONFIG_H
11
12#include <set>
13#include <map>
14#include <string>
15
16namespace lwt {
17 struct GraphConfig;
18}
19
20namespace FlavorTagDiscriminants {
21
23 {
24 std::set<std::string> subjet;
25 std::set<std::string> fatjet;
27 std::map<std::string, std::map<std::string,double>> defaults;
28 };
29 HbbGraphConfig getHbbGraphConfig(const lwt::GraphConfig& cfg);
30
31}
32
33#endif
34
HbbGraphConfig getHbbGraphConfig(const lwt::GraphConfig &cfg)