CbmRoot
Loading...
Searching...
No Matches
CbmMuchPad.cxx
Go to the documentation of this file.
1/* Copyright (C) 2007-2017 St. Petersburg Polytechnic University, St. Petersburg
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Evgeny Kryshen, Mikhail Ryzhinskiy [committer], Florian Uhlig, Vikas Singhal */
4
5#include "CbmMuchPad.h"
6
7// -------------------------------------------------------------------------
9 : fAddress(0)
10 , fX(0.)
11 , fY(0.)
12 , fDx(0.)
13 , fDy(0.)
14 , fDigiIndex(-1)
15 ,
16 //fDigi(NULL),
17 //fMatch(NULL),
18 fNeighbours()
19{
20 fNeighbours.resize(20);
21}
22// -------------------------------------------------------------------------
23
24// -------------------------------------------------------------------------
25CbmMuchPad::CbmMuchPad(Int_t address, Double_t x, Double_t y, Double_t dx, Double_t dy)
26 : fAddress(address)
27 , fX(x)
28 , fY(y)
29 , fDx(dx)
30 , fDy(dy)
31 , fDigiIndex(-1)
32 ,
34 //fDigi(new CbmMuchDigi(address)),
35 //fMatch(new CbmMuchDigiMatch()),
36 fNeighbours()
37{
38 fNeighbours.resize(20);
39}
40// -------------------------------------------------------------------------
std::vector< CbmMuchPad * > fNeighbours
Definition CbmMuchPad.h:60