ATLAS Offline Software
InDetPlotBase.icc
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 template <class Htype> void InDetPlotBase::book (Htype* & pHisto,
6  const std::string& histoIdentifier,
7  const std::string & nameOverride,
8  const std::string& folder){
9  const SingleHistogramDefinition hd = retrieveDefinition(histoIdentifier, folder, nameOverride);
10  if (hd.empty()) {
11  ATH_MSG_WARNING("Histogram definition is empty for identifier " << histoIdentifier);
12  }
13  book(pHisto, hd);
14 }