BmnRoot
Loading...
Searching...
No Matches
BmnMwpcDigit.cxx
Go to the documentation of this file.
1
2/*
3 * File: BmnMwpcDigit.cxx
4 * Author: Sergey Merts
5 *
6 * Created on October 17, 2014, 1:18 PM
7 */
8
9#include "BmnMwpcDigit.h"
10
12 fTime = 0;
13 fStation = -1;
14 fPlane = -1;
15 fWire = -1;
16 fRef = -1;
17 fUse = kFALSE;
18}
19
20BmnMwpcDigit::BmnMwpcDigit(Short_t iStation, Short_t iPlane, Int_t iWire, UInt_t iTime) {
21 fTime = iTime;
22 fStation = iStation;
23 fPlane = iPlane;
24 fWire = iWire;
25 fRef = -1;
26 fUse = kFALSE;
27}
28
virtual ~BmnMwpcDigit()