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