FairRoot/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 {
21  public :
22  Double_t dimX; // PixelDimension in x
23  Double_t dimY; // PixelDimension in y
24  //Double_t skew; // skewing angle if one exists
25  Double_t threshold; // Discriminator threshold
26  Double_t noise; // Complete noise including threshold dispersion
27 // Text_t sensName; // Sensor name (Strip, Pixel, etc...)
28 // Text_t feName; // Frontend name (APV25, nyxiter, ...)
29 
30  PndHypDigiPar (const char* name="PndHypParTest",
31  const char* title="Hyp digi parameter",
32  const char* context="TestDefaultContext");
33  ~PndHypDigiPar(void){};
34  void clear(void){};
35  void putParams(FairParamList* list);
36  Bool_t getParams(FairParamList* list);
38 };
39 
40 #endif
void putParams(FairParamList *list)
~PndHypDigiPar(void)
Definition: PndHypDigiPar.h:33
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:34
Double_t noise
Definition: PndHypDigiPar.h:26
Double_t
Double_t threshold
Definition: PndHypDigiPar.h:25
TString name
Double_t dimY
Definition: PndHypDigiPar.h:23
Double_t dimX
Definition: PndHypDigiPar.h:22