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