You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// retrieve an object of type T from CCDB as stored under path and using the timestamp in the middle of the run + metadata. The run number is provided separately to conform to typical analysis use (in which case metadata does not include runNumber)
119
+
template <typename T>
120
+
T* getSpecificForRun(std::string const& path, int runNumber, MD metaData = MD());
121
+
114
122
/// detect online processing modes (i.e. CCDB objects may be updated in the lifetime of the manager)
// tmp helper and single point of entry for a CURL perform call
614
627
// helps to switch between easy handle perform and multi handles in a single place
615
628
CURLcode CURL_perform(CURL* handle) const;
@@ -632,6 +645,8 @@ class CcdbApi //: public DatabaseInterface
632
645
size_tmCurlTimeoutDownload = 15; // download timeout in seconds, can be configured via ALICEO2_CCDB_CURL_TIMEOUT_DOWNLOAD, updated according to the deployment mode
633
646
size_tmCurlTimeoutUpload = 15; // upload timeout in seconds, can be configured via ALICEO2_CCDB_CURL_TIMEOUT_UPLOAD, updated according to the deployment mode
634
647
648
+
staticconstexprchar FlatHeaderAnnot[] = "$HEADER$"; // annotation for flat header
0 commit comments