Project
Loading...
Searching...
No Matches
FlagType.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_QUALITYCONTROL_FLAGTYPE_H
13#define O2_QUALITYCONTROL_FLAGTYPE_H
14
15// STL
16#include <iosfwd>
17#include <cstdint>
18
19// ROOT includes
20#include <Rtypes.h>
21
22namespace o2
23{
24namespace quality_control
25{
26
27class FlagTypeFactory;
29
31{
32 private:
33 uint16_t mId;
34 std::string mName;
35 bool mBad; // if true, data should become bad by default
36
37 // By making the constructor private and FlagTypes available only in the FlagTypeFactory
38 // we forbid to declare any flags in the user code. If you need a new FlagType, please add it FlagTypeFactory.
39 private:
40 FlagType(uint16_t id, const char* name, bool bad) : mId(id), mName(name), mBad(bad) {}
41
42 public:
43 FlagType();
44 FlagType& operator=(const FlagType&) = default;
45 FlagType(const FlagType&) = default;
46 bool operator==(const FlagType& rhs) const;
47 bool operator!=(const FlagType& rhs) const;
48 bool operator<(const FlagType& rhs) const;
49 bool operator>(const FlagType& rhs) const;
50
51 uint16_t getID() const { return mId; }
52 const std::string& getName() const { return mName; }
53 bool getBad() const { return mBad; }
54
55 friend std::ostream& operator<<(std::ostream& os, FlagType const& me);
56 friend class FlagTypeFactory;
58
60};
61
62} // namespace quality_control
63} // namespace o2
64#endif // O2_QUALITYCONTROL_FLAGTYPE_H
bool operator!=(const FlagType &rhs) const
Definition FlagType.cxx:35
FlagType(const FlagType &)=default
friend std::ostream & operator<<(std::ostream &os, FlagType const &me)
Definition FlagType.cxx:26
uint16_t getID() const
Definition FlagType.h:51
const std::string & getName() const
Definition FlagType.h:52
FlagType & operator=(const FlagType &)=default
bool operator<(const FlagType &rhs) const
Definition FlagType.cxx:39
bool operator>(const FlagType &rhs) const
Definition FlagType.cxx:43
bool operator==(const FlagType &rhs) const
Definition FlagType.cxx:31
GLuint const GLchar * name
Definition glcorearb.h:781
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...