ATLAS Offline Software
Loading...
Searching...
No Matches
CalibrationDataUtilities.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
5// CalibrationDataUtilities.h, (c) ATLAS Detector software
7
8#ifndef ANALYSISCALIBRATIONDATAUTILITIES_H
9#define ANALYSISCALIBRATIONDATAUTILITIES_H
10
11#include <map>
12#include <string>
13
14namespace Analysis {
15
16 // Note that the following naming conventions are assumed here:
17 // directory: <tagger name>/<jet author name>/<operating point>/<flavour>
18 // path: <directory>/<calibration object name>
19
20 // Print a summary of the fragmentation and decay settings for the specified
21 // file and internal directory
22 void showHadronisations(const char* filename, const char* directory);
23
24 // Retrieve the fragmentation and decay settings for the specified
25 // file and internal directory
26 std::map<std::string, std::string>
27 getHadronisations(const char* filename, const char* directory);
28
29 // Print the CDI file's build number (if it was an "official" CDI file)
30 void showBuildNumber(const char* filename);
31}
32
33#endif
The namespace of all packages in PhysicsAnalysis/JetTagging.
void showBuildNumber(const char *filename)
std::map< std::string, std::string > getHadronisations(const char *filename, const char *directory)
void showHadronisations(const char *filename, const char *directory)