PandaRoot
PndMvdSiHit.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 #include <TObject.h>
14 #include <TClonesArray.h>
15 
16 class PndMvdSiHit : public TObject {
17  public:
18  PndMvdSiHit();
19  PndMvdSiHit(UShort_t box, UShort_t channel, Int_t adc, UShort_t numFrames);
20  virtual ~PndMvdSiHit();
21 
22  public:
23  UShort_t fBox; // Box number (0..3)
24  UShort_t fChannel; // Channel of strip sensor (0..767)
25  Int_t fAdc; // raw ADC value
26  UShort_t fNumFrames; // number of frames with signal above threshold
27 
29 };
UShort_t fBox
Definition: PndMvdSiHit.h:23
UShort_t fChannel
Definition: PndMvdSiHit.h:24
Int_t fAdc
Definition: PndMvdSiHit.h:25
ClassDef(PndMvdSiHit, 1)
UShort_t fNumFrames
Definition: PndMvdSiHit.h:26
virtual ~PndMvdSiHit()