PandaRoot
PndHypDigiStrip.h
Go to the documentation of this file.
1 // --------------------------------------------------------
2 // ---- MvdDigiStrip header file ---
3 // ---- Created 10.07.07 by Ralf Kliemt ---
4 // --------------------------------------------------------
5 
13 #ifndef PNDHYPDIGISTRIP_H
14 #define PNDHYPDIGISTRIP_H
15 
16 #include "TObject.h"
17 #include "TString.h"
18 #include <iostream>
19 
20 #include "PndHypDigi.h"
21 // class PndHypStrip;
22 
23 class PndHypDigiStrip : public PndHypDigi {
24  public:
26  PndHypDigiStrip(Int_t index, Int_t detID, TString detName, Int_t fe, Int_t chan, Double_t charge);
28 
29  // Int_t GetIndex() const { return fIndex; }
30  // Int_t GetDetID() const { return fDetID;}
31  // TString GetDetName() const { return fDetName; }
32  // Int_t GetFE() const { return fFE; }
33  Int_t GetChannel() const { return fChannel; }
34  // Double_t GetCharge() const { return fCharge; }
35  // Int_t GetMCID() const { return fMCID; }
36  // SensorSide GetSensorSide() const {return fSide;};
37 
38  // void SetSensorSide(SensorSide s) {fSide = s;}
39  /* void SetIndex ( Int_t index ) { fIndex = index; } */
40  /* void SetDetID ( Int_t detID ) { fDetID = detID; } */
41  /* void SetDetName ( const TString& detName ) { fDetName = detName; } */
42  /* void SetFE ( Int_t fe ) { fFE = fe; } */
43  /* void SetChannel ( Int_t channel ) { fChannel = channel; } */
44  /* void SetCharge ( Double_t charge ) { fCharge = charge; } */
45  /* void SetMCID ( Int_t mcID ) { fMCID = mcID; } */
46 
47  /* const void print(); */
48 
49  Bool_t operator==(const PndHypDigiStrip &d2) const;
50  // Bool_t const HasNeighbour(const PndHypDigiStrip& d2);
51 
52  private:
53  /* Int_t fIndex; // MC Point index */
54  /* Int_t fDetID; */
55  /* TString fDetName; */
56  /* Int_t fFE; */
57  Int_t fChannel;
58  /* Double_t fCharge; */
59  /* Int_t fMCID; // MC Track index */
60 
61  ClassDef(PndHypDigiStrip, 2);
62 };
63 
64 #endif
Int_t GetChannel() const
Bool_t operator==(const PndHypDigiStrip &d2) const
Base class for Digi information.
Definition: PndHypDigi.h:22