ATLAS Offline Software
SPLayer.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 // SPLayer.cxx
6 // Richard Hawkings, started 13/4/04
7 // Methods for SPLayer class to represent a super layer of space points
8 
9 #include <iostream>
11 
12 SPLayer::SPLayer(const int /*h1*/, const int /*h2*/, const int det, const int bec,
13  const int layer, const int side, const std::string& name,
14  const std::vector<TH1*>& histlist) :
15  m_dettype(det), m_bec(bec), m_layer(layer),
16  m_side(side),m_nmod(0), m_nhit(0), m_name(name), m_histlist(histlist)
17  {
18  std::cout << "In splayer constructer" << std::endl;
19  if (m_histlist.size() != 10) std::cout <<
20  "SPLayer Error: Unexpected histogram list size " <<
21  m_histlist.size() << std::endl;
22 }
23 
SPLayer::SPLayer
SPLayer(const int, const int, const int, const int, const int, const int, const std::string &, const std::vector< TH1 * > &)
Definition: SPLayer.cxx:12
ParticleGun_SamplingFraction.bec
int bec
Definition: ParticleGun_SamplingFraction.py:89
TRT::Hit::side
@ side
Definition: HitInfo.h:83
TRT::Hit::layer
@ layer
Definition: HitInfo.h:79
WritePulseShapeToCool.det
det
Definition: WritePulseShapeToCool.py:204
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
SPLayer.h
SPLayer::m_histlist
std::vector< TH1 * > m_histlist
Definition: SPLayer.h:39