1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef DQMServices_Components_fillJson_h
#define DQMServices_Components_fillJson_h
// -*- C++ -*-
//
// Package: DQMServices/Components
// Class : fillJson
//
/**\function fillJson fillJson.h "DQMServices/Components/interface/fillJson.h"
Description: Function used by DQMFileSaver and JsonWritingTimedPoolOutputModule
Usage:
<usage>
*/
//
// Original Author: Christopher Jones
// Created: Thu, 08 Nov 2018 21:17:22 GMT
//
// system include files
#include <boost/property_tree/ptree.hpp>
// user include files
// forward declarations
namespace evf {
class FastMonitoringService;
}
namespace dqmfilesaver {
// used by the JsonWritingTimedPoolOutputModule,
// fms will be nullptr in such case
boost::property_tree::ptree fillJson(int run,
int lumi,
const std::string& dataFilePathName,
const std::string& transferDestinationStr,
const std::string& mergeTypeStr,
evf::FastMonitoringService* fms);
} // namespace dqmfilesaver
#endif
|