ATLAS Offline Software
LArShapeP2.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 #include <cassert>
7 
8 
9 LArShapeP2::LArShapeP2(float timeOffset,
10  float timeBinWidth,
11  const std::vector<std::vector<float> >& vShape,
12  const std::vector<std::vector<float> >& vShapeDer)
13  : LAr2DWaveBase (timeOffset, timeBinWidth, vShape, vShapeDer)
14 {
15 }
16 
17 
18 LArShapeP2::LArShapeP2(float timeOffset,
19  float timeBinWidth,
20  unsigned int nPhases,
21  unsigned int nSamples,
22  const std::vector<float>& shape,
23  const std::vector<float>& shapeDer,
24  unsigned int index)
25  : LAr2DWaveBase (timeOffset, timeBinWidth,
26  nPhases, nSamples,
27  shape, shapeDer, index)
28 {
29 }
30 
31 
34 {
35 }
36 
37 
40 {
41 }
42 
43 
index
Definition: index.py:1
LArShapeP2::LArShapeP2
LArShapeP2()
Definition: LArShapeP2.h:26
LArCompactSubsetConstChannelProxy
A more compact way of storing shape/ofc data — const portion.
Definition: LArCompactSubset.h:100
LArCompactSubsetChannelProxy
A more compact way of storing shape/ofc data — non-const portion.
Definition: LArCompactSubset.h:178
InDetDD::other
@ other
Definition: InDetDD_Defs.h:16
LAr2DWaveBase
Per-channel class holding wave information in time bins.
Definition: LAr2DWaveBase.h:49
LArDigits2NtupleDumper.nSamples
nSamples
Definition: LArDigits2NtupleDumper.py:70
LArShapeP2.h