CbmRoot
Loading...
Searching...
No Matches
CbmGeoSetupMedia.h
Go to the documentation of this file.
1/* Copyright (C) 2019-2020 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Evgeny Lavrik, Florian Uhlig [committer] */
4
10#ifndef CBMGEOSETUPMATERIAL_H
11#define CBMGEOSETUPMATERIAL_H 1
12
13#include <Rtypes.h> // for ClassDef
14#include <RtypesCore.h> // for Int_t
15
16#include <string> // for string
17
24public:
25 Int_t GetId() { return fId; };
26 std::string GetTag() { return fTag; };
27 std::string GetAuthor() { return fAuthor; };
28 std::string GetDate() { return fDate; };
29 std::string GetDescription() { return fDescription; };
30 std::string GetFilePath() { return fFilePath; };
31 std::string GetRevision() { return fRevision; };
32
33 void SetId(Int_t value) { fId = value; };
34 void SetTag(std::string value) { fTag = value; };
35 void SetAuthor(std::string value) { fAuthor = value; };
36 void SetDate(std::string value) { fDate = value; };
37 void SetDescription(std::string value) { fDescription = value; };
38 void SetFilePath(std::string value) { fFilePath = value; };
39 void SetRevision(std::string value) { fRevision = value; };
40
41private:
42 Int_t fId {};
43 std::string fTag {};
44 std::string fAuthor {};
45 std::string fDate {};
46 std::string fDescription {};
47 std::string fFilePath {};
48 std::string fRevision {};
49
51};
52
53#endif /* CBMGEOSETUPMATERIAL_H */
std::string fRevision
std::string GetRevision()
std::string fDescription
std::string GetTag()
std::string fFilePath
void SetTag(std::string value)
void SetAuthor(std::string value)
void SetRevision(std::string value)
void SetId(Int_t value)
void SetDate(std::string value)
std::string GetDate()
std::string GetAuthor()
void SetDescription(std::string value)
ClassDefNV(CbmGeoSetupMedia, 1)
std::string GetFilePath()
std::string GetDescription()
void SetFilePath(std::string value)