CbmRoot
Loading...
Searching...
No Matches
CbmGeoBmon.h
Go to the documentation of this file.
1/* Copyright (C) 2023 Facility for AntiProton and Ion Research in Europe, Darmstadt.
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Eoin Clerkin [committer] */
4
5#ifndef CBMGEOBMON_H
6#define CBMGEOBMON_H
7
8#include "FairGeoSet.h"
9
10class CbmGeoBmon : public FairGeoSet {
11protected:
12 char modName[2]; // name of module
13 char eleName[2]; // substring for elements in module
14public:
17 const char* getModuleName(Int_t) { return modName; }
18 const char* getEleName(Int_t) { return eleName; }
19 ClassDef(CbmGeoBmon, 0) // Class for the geometry of BMON
20};
21
22#endif /* !CBMGEOBMON_H */
char eleName[2]
Definition CbmGeoBmon.h:13
char modName[2]
Definition CbmGeoBmon.h:12
const char * getModuleName(Int_t)
Definition CbmGeoBmon.h:17
const char * getEleName(Int_t)
Definition CbmGeoBmon.h:18