Project
Loading...
Searching...
No Matches
ctpCCDBManager.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
15#ifndef _CTP_CTPCCDB_H_
16#define _CTP_CTPCCDB_H_
18
19namespace o2
20{
21namespace ctp
22{
24{
25 public:
26 ctpCCDBManager() = default;
27 int saveRunScalersToCCDB(CTPRunScalers& scalers, long timeStart, long timeStop);
28 int saveRunScalersToQCDB(CTPRunScalers& scalers, long timeStart, long timeStop);
29 int saveRunConfigToCCDB(CTPConfiguration* cfg, long timeStart);
30 int saveSoxOrbit(uint32_t runNumber, uint32_t soxOrbit, long timeStart);
31 int saveOrbitReset(long timeStamp);
32 static CTPConfiguration getConfigFromCCDB(long timestamp, std::string run, bool& ok);
33 static CTPConfiguration getConfigFromCCDB(long timestamp, std::string run);
34 CTPRunScalers getScalersFromCCDB(long timestamp, std::string, bool& ok);
35 static void setCCDBHost(std::string host) { mCCDBHost = host; };
36 static void setQCDBHost(std::string host) { mQCDBHost = host; };
37
38 protected:
40 // std::string mCCDBHost = "http://ccdb-test.cern.ch:8080";
41 // std::string mQCDBHost = "http://ali-qcdb.cern.ch:8083";
42 static std::string mCCDBHost;
43 static std::string mQCDBHost;
44 const std::string mCCDBPathCTPScalers = "CTP/Calib/Scalers";
45 // std::string mCCDBPathCTPConfig = "CTP/Config/Config"; - in Configuration.h
46 const std::string mQCDBPathCTPScalers = "qc/CTP/Scalers";
47 const std::string mCCDBPathSoxOrbit = "CTP/Calib/FirstRunOrbit";
48 const std::string mCCDBPathOrbitReset = "CTP/Calib/OrbitReset";
50};
51} // namespace ctp
52} // namespace o2
53#endif //_CTP_CTPCCDB_H_
definition of CTPConfiguration and related CTP structures
const std::string mCCDBPathOrbitReset
static std::string mCCDBHost
Database constants.
const std::string mQCDBPathCTPScalers
int saveRunScalersToQCDB(CTPRunScalers &scalers, long timeStart, long timeStop)
ClassDefNV(ctpCCDBManager, 1)
static std::string mQCDBHost
int saveSoxOrbit(uint32_t runNumber, uint32_t soxOrbit, long timeStart)
static void setQCDBHost(std::string host)
CTPRunScalers getScalersFromCCDB(long timestamp, std::string, bool &ok)
int saveRunScalersToCCDB(CTPRunScalers &scalers, long timeStart, long timeStop)
int saveRunConfigToCCDB(CTPConfiguration *cfg, long timeStart)
static void setCCDBHost(std::string host)
static CTPConfiguration getConfigFromCCDB(long timestamp, std::string run, bool &ok)
const std::string mCCDBPathCTPScalers
int saveOrbitReset(long timeStamp)
const std::string mCCDBPathSoxOrbit
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...