ATLAS Offline Software
Loading...
Searching...
No Matches
HbbConstants.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_CONSTANTS_H
10#define HBB_CONSTANTS_H
11
12namespace FlavorTagDiscriminants {
13
14 namespace hbb_key {
15 // these must be specified correctly in the neural network inputs
16 const std::string pt = "pt"; // should be in MeV
17 const std::string eta = "eta";
18 const std::string subjet = "subjet";
19 const std::string fatjet = "fatjet";
20 }
21}
22
23#endif