PandaRoot
PndGemGeoPar.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 // ----- PndGemGeoPar header file -----
15 // ----- Created 15/02/2009 by R.Karabowicz -----
16 // -------------------------------------------------------------------------
17 
24 #ifndef PNDGEMGEOPAR_H
25 #define PNDGEMGEOPAR_H
26 
27 #include "FairParGenericSet.h"
28 #include "TH1F.h"
29 
30 class PndGemGeoPar : public FairParGenericSet {
31  public:
32  PndGemGeoPar(const char *name = "PndGemGeoPar", const char *title = "PndGem Geometry Parameters", const char *context = "TestDefaultContext");
33  ~PndGemGeoPar(void);
34  void clear(void);
35  void putParams(FairParamList *l);
36  Bool_t getParams(FairParamList *l);
37  TObjArray *GetGeoSensitiveNodes() { return fGeoSensNodes; }
38  TObjArray *GetGeoPassiveNodes() { return fGeoPassNodes; }
39 
40  private:
41  TObjArray *fGeoSensNodes; // List of FairGeoNodes for sensitive volumes
42  TObjArray *fGeoPassNodes; // List of FairGeoNodes for sensitive volumes
43 
44  ClassDef(PndGemGeoPar, 2);
45 };
46 
47 #endif /* !PNDGEMGEOPAR_H */
~PndGemGeoPar(void)
Bool_t getParams(FairParamList *l)
TObjArray * GetGeoSensitiveNodes()
Definition: PndGemGeoPar.h:37
void clear(void)
void putParams(FairParamList *l)
PndGemGeoPar(const char *name="PndGemGeoPar", const char *title="PndGem Geometry Parameters", const char *context="TestDefaultContext")
TObjArray * GetGeoPassiveNodes()
Definition: PndGemGeoPar.h:38