PandaRoot
PndGeoHypPar.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 // -------------------------------------------------------------------------
14 // ----- CbmGeoHypPar header file -----
15 // ----- Created by A.Sanchez -----
16 // -------------------------------------------------------------------------
17 
18 #ifndef PNDGEOHYPPAR_H
19 #define PNDGEOHYPPAR_H
20 
21 #include "FairParGenericSet.h"
22 #include "TObjArray.h"
23 
24 class PndGeoHypPar : public FairParGenericSet {
25  public:
26  TObjArray *fGeoSensNodes;
27  TObjArray *fGeoPassNodes;
29  PndGeoHypPar(const char *name = "PndGeoHypPar", const char *title = "Hyp Geometry Parameters", const char *context = "TestDefaultContext");
30  ~PndGeoHypPar(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  ClassDef(PndGeoHypPar, 1)
38 };
39 
40 #endif /* !PNDGEOHYPPAR_H */
TObjArray * GetGeoSensitiveNodes()
Definition: PndGeoHypPar.h:34
void clear(void)
PndGeoHypPar(const char *name="PndGeoHypPar", const char *title="Hyp Geometry Parameters", const char *context="TestDefaultContext")
TObjArray * fGeoPassNodes
Definition: PndGeoHypPar.h:27
~PndGeoHypPar(void)
TObjArray * fGeoSensNodes
Definition: PndGeoHypPar.h:26
void putParams(FairParamList *)
Bool_t getParams(FairParamList *)
TObjArray * GetGeoPassiveNodes()
Definition: PndGeoHypPar.h:35