FairRoot/PandaRoot
PndHypDigi.cxx
Go to the documentation of this file.
1 #include "PndHypDigi.h"
2 
4  fIndex(),
5  fDetID(-1),
6  fDetName(""),
7  fCharge(-1),
8  fFE(0)
9 {
10 }
11 
12 PndHypDigi::PndHypDigi(Int_t index, Int_t detID, TString detName, Int_t fe, Double_t charge) :
13  fIndex(),
14  fDetID(detID),
15  fDetName(detName),
16  fCharge(charge),
17  fFE(fe)
18 {
19  fIndex.push_back(index);
20 }
21 
Double_t
std::vector< Int_t > fIndex
Definition: PndHypDigi.h:62
int fe
Definition: anaLmdDigi.C:67
ClassImp(PndAnaContFact)
Base class for Digi information.
Definition: PndHypDigi.h:23