PandaRoot
CbmGeoPlane.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 #ifndef CBMGEOPlane_H
14 #define CBMGEOPlane_H
15 
16 #include "FairGeoSet.h"
17 
18 class CbmGeoPlane : public FairGeoSet {
19  public:
20  char modName[10]; // name of module
21  char eleName[10]; // substring for elements in module
22  CbmGeoPlane();
24  // inline Int_t getModNumInMod(const TString&);
25  ClassDef(CbmGeoPlane, 0) // Class for Plane
26 };
27 
28 /* inline Int_t CbmGeoPlane::getModNumInMod(const TString& name) { */
29 /* // returns the module index from module name */
30 /* Int_t bla = (Int_t)(name[6]-'0')-1; */
31 /* if(bla == -1) bla = 9; */
32 /* return bla; */
33 /* } */
34 
35 #endif /* !CBMGEOPlane_H */
char eleName[10]
Definition: CbmGeoPlane.h:21
char modName[10]
Definition: CbmGeoPlane.h:20