PandaRoot
PndGeoPassivePar.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 PNDGEOPASSIVEPAR_H
14 #define PNDGEOPASSIVEPAR_H
15 
16 #include "FairParGenericSet.h"
17 #include "TH1F.h"
18 
19 class PndGeoPassivePar : public FairParGenericSet {
20  public:
21  TObjArray *fGeoSensNodes; // List of FairGeoNodes for sensitive volumes
22  TObjArray *fGeoPassNodes; // List of FairGeoNodes for sensitive volumes
23 
24  PndGeoPassivePar(const char *name = "PndGeoPassivePar", const char *title = "Passive Geometry Parameters", const char *context = "TestDefaultContext");
25  ~PndGeoPassivePar(void);
26  void clear(void);
27  void putParams(FairParamList *);
28  Bool_t getParams(FairParamList *);
29  TObjArray *GetGeoSensitiveNodes() { return fGeoSensNodes; }
30  TObjArray *GetGeoPassiveNodes() { return fGeoPassNodes; }
31 
32  private:
34  PndGeoPassivePar &operator=(const PndGeoPassivePar &) { return *this; }
35 
36  ClassDef(PndGeoPassivePar, 1)
37 };
38 
39 #endif /* !PNDGEOPASSIVEPAR_H */
PndGeoPassivePar(const char *name="PndGeoPassivePar", const char *title="Passive Geometry Parameters", const char *context="TestDefaultContext")
TObjArray * GetGeoPassiveNodes()
TObjArray * fGeoPassNodes
TObjArray * fGeoSensNodes
Bool_t getParams(FairParamList *)
TObjArray * GetGeoSensitiveNodes()
void clear(void)
void putParams(FairParamList *)