PandaRoot
PndHypDigiPar.h
Go to the documentation of this file.
1 //
2 // C++ Interface: MvdDigiPar
3 //
4 // Description:
5 //
6 //
7 // Author: t.stockmanns <stockman@ikp455>, (C) 2007
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
12 
13 #ifndef PNDHYPDIGIPAR_H
14 #define PNDHYPDIGIPAR_H
15 
16 #include "FairParGenericSet.h"
17 #include "FairParamList.h"
18 
19 class PndHypDigiPar : public FairParGenericSet {
20  public:
21  Double_t dimX; // PixelDimension in x
22  Double_t dimY; // PixelDimension in y
23  // Double_t skew; // skewing angle if one exists
24  Double_t threshold; // Discriminator threshold
25  Double_t noise; // Complete noise including threshold dispersion
26  // Text_t sensName; // Sensor name (Strip, Pixel, etc...)
27  // Text_t feName; // Frontend name (APV25, nyxiter, ...)
28 
29  PndHypDigiPar(const char *name = "PndHypParTest", const char *title = "Hyp digi parameter", const char *context = "TestDefaultContext");
30  ~PndHypDigiPar(void){};
31  void clear(void){};
32  void putParams(FairParamList *list);
33  Bool_t getParams(FairParamList *list);
35 };
36 
37 #endif
void putParams(FairParamList *list)
~PndHypDigiPar(void)
Definition: PndHypDigiPar.h:30
ClassDef(PndHypDigiPar, 2)
Bool_t getParams(FairParamList *list)
PndHypDigiPar(const char *name="PndHypParTest", const char *title="Hyp digi parameter", const char *context="TestDefaultContext")
void clear(void)
Definition: PndHypDigiPar.h:31
Double_t noise
Definition: PndHypDigiPar.h:25
Double_t threshold
Definition: PndHypDigiPar.h:24
Double_t dimY
Definition: PndHypDigiPar.h:22
Double_t dimX
Definition: PndHypDigiPar.h:21