Project
Loading...
Searching...
No Matches
CalPadWrapper.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_CalPadWrapper_H
13#define O2_CalPadWrapper_H
14
15#include <TClass.h>
16#include <TObject.h>
17
18#include "TPCBase/CalDet.h"
19
20namespace o2
21{
22namespace tpc
23{
24namespace qc
25{
30class CalPadWrapper : public TObject
31{
32 public:
34 {
35 }
36
37 CalPadWrapper() = default;
38
40 {
41 mObj = obj;
42 }
43
45 {
46 return mObj;
47 }
48
49 virtual const char* GetName() const override { return mObj ? mObj->getName().data() : "unset"; }
50
51 virtual ~CalPadWrapper() override = default;
52
53 private:
55
56 ClassDefOverride(CalPadWrapper, 1);
57};
58} // namespace qc
59} // namespace tpc
60} // namespace o2
61
62#endif
const std::string & getName() const
Definition CalDet.h:85
o2::tpc::CalDet< float > * getObj()
void setObj(o2::tpc::CalDet< float > *obj)
CalPadWrapper(o2::tpc::CalDet< float > *obj)
virtual const char * GetName() const override
virtual ~CalPadWrapper() override=default
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...