-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathELIGeoLuMonPar.h
40 lines (33 loc) · 1.74 KB
/
ELIGeoLuMonPar.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/******************************************************************************
* Copyright (C) 2019 GSI Helmholtzzentrum für Schwerionenforschung GmbH *
* Copyright (C) 2019 Members of R3B Collaboration *
* *
* This software is distributed under the terms of the *
* GNU General Public Licence (GPL) version 3, *
* copied verbatim in the file "LICENSE". *
* *
* In applying this license GSI does not waive the privileges and immunities *
* granted to it by virtue of its status as an Intergovernmental Organization *
* or submit itself to any jurisdiction. *
******************************************************************************/
#ifndef ELIGEOLUMONPAR_H
#define ELIGEOLUMONPAR_H
#include "FairParGenericSet.h"
#include "TH1F.h"
class ELIGeoLuMonPar : public FairParGenericSet
{
public:
TObjArray* fGeoSensNodes; // List of FairGeoNodes for sensitive volumes
TObjArray* fGeoPassNodes; // List of FairGeoNodes for sensitive volumes
ELIGeoLuMonPar(const char* name = "ELIGeoLuMonPar",
const char* title = "LuMon Geometry Parameters",
const char* context = "TestDefaultContext");
~ELIGeoLuMonPar(void);
void clear(void);
void putParams(FairParamList*);
Bool_t getParams(FairParamList*);
TObjArray* GetGeoSensitiveNodes() { return fGeoSensNodes; }
TObjArray* GetGeoPassiveNodes() { return fGeoPassNodes; }
ClassDef(ELIGeoLuMonPar, 1)
};
#endif /* !ELIGEOLUMONPAR_H */