Project
Loading...
Searching...
No Matches
DCSNamer.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
12#ifndef O2_MID_CONDITIONS_DCS_NAMER_H
13#define O2_MID_CONDITIONS_DCS_NAMER_H
14
15#include <vector>
16#include <string>
17#include <optional>
18#include <cstdint>
19
20namespace o2::mid::dcs
21{
22// The two types of MID DCS measurements that are of interest for reconstruction
23enum class MeasurementType {
24 HV_V, // HV voltage
25 HV_I // HV current
26};
27
28// Side describes on which side (inside or outside) a RPC is.
29enum class Side {
30 Inside,
32};
33
34// ID is used to reference a RPC in MID DCS.
35struct ID {
36 int number;
38 int chamberId; // 11,12,21,22
39};
40
41// detElemId2DCS converts a detection element id into a dcs-id.
42// @returns an ID if deId is a valid the MID detID, std::nullopt otherwise.
43std::optional<ID> detElemId2DCS(int deId);
44
45// aliases gets a list of MID DCS aliases for the given measurement type(s).
46// @param types a vector of the measurement types for which the aliases should
47// be returned.
48// @returns a list of MID DCS alias names.
49std::vector<std::string> aliases(std::vector<MeasurementType> types = {
52
57std::string detElemId2DCSAlias(int deId, MeasurementType type);
58
59} // namespace o2::mid::dcs
60
61#endif
GLsizei GLenum GLenum * types
Definition glcorearb.h:2516
GLint GLint GLsizei GLint GLenum GLenum type
Definition glcorearb.h:275
std::optional< ID > detElemId2DCS(int deId)
Definition DCSNamer.cxx:92
std::string detElemId2DCSAlias(int deId, MeasurementType type)
Converts the detection element ID into a DCS alias.
Definition DCSNamer.cxx:121
std::vector< std::string > aliases(std::vector< MeasurementType > types={ MeasurementType::HV_V, MeasurementType::HV_I})
Definition DCSNamer.cxx:127