PandaRoot
PndRichGeoPar.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 PNDRICHGEOPAR_H
14 #define PNDRICHGEOPAR_H
15 
16 #include "FairParGenericSet.h"
17 
18 class TObjArray;
19 class FairParamList;
20 
21 class PndRichGeoPar : public FairParGenericSet {
22  public:
24  TObjArray *fGeoSensNodes;
25 
27  TObjArray *fGeoPassNodes;
28 
29  PndRichGeoPar(const char *name = "PndRichGeoPar", const char *title = "PndRich Geometry Parameters", const char *context = "TestDefaultContext");
30  ~PndRichGeoPar(void);
31  void clear(void);
32  void putParams(FairParamList *);
33  Bool_t getParams(FairParamList *);
34  TObjArray *GetGeoSensitiveNodes() { return fGeoSensNodes; }
35  TObjArray *GetGeoPassiveNodes() { return fGeoPassNodes; }
36 
37  private:
39  PndRichGeoPar &operator=(const PndRichGeoPar &);
40 
41  ClassDef(PndRichGeoPar, 1)
42 };
43 
44 #endif
Bool_t getParams(FairParamList *)
TObjArray * fGeoPassNodes
Definition: PndRichGeoPar.h:27
TObjArray * GetGeoSensitiveNodes()
Definition: PndRichGeoPar.h:34
void putParams(FairParamList *)
~PndRichGeoPar(void)
void clear(void)
TObjArray * GetGeoPassiveNodes()
Definition: PndRichGeoPar.h:35
PndRichGeoPar(const char *name="PndRichGeoPar", const char *title="PndRich Geometry Parameters", const char *context="TestDefaultContext")
TObjArray * fGeoSensNodes
Definition: PndRichGeoPar.h:24