forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateGRPMagFieldObject.C
More file actions
58 lines (49 loc) · 2.17 KB
/
Copy pathCreateGRPMagFieldObject.C
File metadata and controls
58 lines (49 loc) · 2.17 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
#if !defined(__CLING__) || defined(__ROOTCLING__)
#include <ctime>
#include <chrono>
#include "DataFormatsParameters/GRPMagField.h"
#include "CCDB/CcdbApi.h"
#include "CommonTypes/Units.h"
#endif
using timePoint = long;
using CcdbApi = o2::ccdb::CcdbApi;
using GRPMagField = o2::parameters::GRPMagField;
using current = o2::units::Current_t;
// Simple macro to exemplify how to fill a GRPMagField object (GRP object containing the information on the magnetic field)
// e.g.
/*
.L CreateGRPMagFieldObject.C+
float l3 = 30000 // Ampere
float dipole = 6000 // Ampere
std::time_t tStart = std::chrono::duration_cast<std::chrono::seconds>(std::chrono::system_clock::now().time_since_epoch()).count()
std::time_t tEnd = (tStart + 60 * 60 * 24 * 365) * 1000; // 1 year validity, just an example
bool isUniform = true
int runNb = 123456
CreateGRPMagFieldObject(l3, dipole, tStart, runNb, tEnd, isUniform)
*/
void CreateGRPMagFieldObject(current l3, current dipole, timePoint start, timePoint end = -1, bool isUniform = true, std::string ccdbPath = "http://ccdb-test.cern.ch:8080")
{
GRPMagField grp;
grp.setL3Current(l3);
grp.setDipoleCurrent(dipole);
grp.setFieldUniformity(isUniform);
CcdbApi api;
api.init(ccdbPath);
std::map<std::string, std::string> metadata;
metadata["responsible"] = "DCS";
//long ts = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count();
if (end < 0) {
end = (start + 60 * 60 * 10) * 1000; // start + 10h, in ms
}
api.storeAsTFileAny(&grp, "GLO/Config/GRPMagField", metadata, start * 1000, end); // making it 1-year valid to be sure we have something
}