Project
Loading...
Searching...
No Matches
Assertions.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_MCH_RAW_IMPL_HELPERS_ASSERTIONS_H
13
#define O2_MCH_RAW_IMPL_HELPERS_ASSERTIONS_H
14
15
#include <fmt/format.h>
16
17
namespace
o2::mch::raw::impl
18
{
19
20
inline
int
assertIsInRange
(std::string what, uint64_t
value
, uint64_t
min
, uint64_t
max
)
21
{
22
if
(value < min || value >
max
) {
23
throw
std::invalid_argument(fmt::format(
"{} should be between {} and {} but is {}"
, what,
min
,
max
,
value
));
24
}
25
return
value
;
26
}
27
28
}
// namespace o2::mch::raw::impl
29
30
#endif
value
GLsizei const GLfloat * value
Definition
glcorearb.h:819
o2::mch::raw::impl
Definition
PageDecoder.cxx:23
o2::mch::raw::impl::assertIsInRange
int assertIsInRange(std::string what, uint64_t value, uint64_t min, uint64_t max)
Definition
Assertions.h:20
min
constexpr size_t min
Definition
test_Algorithm.cxx:48
max
constexpr size_t max
Definition
test_Algorithm.cxx:49
Detectors
MUON
MCH
Raw
ImplHelpers
Assertions.h
Generated on Tue Feb 25 2025 23:16:23 for Project by
1.9.8