ATLAS Offline Software
Loading...
Searching...
No Matches
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
12SPLayer::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) :
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
int m_layer
Definition SPLayer.h:34
std::string m_name
Definition SPLayer.h:38
int m_side
Definition SPLayer.h:35
std::vector< TH1 * > m_histlist
Definition SPLayer.h:39
int m_nhit
Definition SPLayer.h:37
int m_bec
Definition SPLayer.h:33
SPLayer(const int, const int, const int, const int, const int, const int, const std::string &, const std::vector< TH1 * > &)
Definition SPLayer.cxx:12
int m_dettype
Definition SPLayer.h:32
int layer() const
Definition SPLayer.h:47
int bec() const
Definition SPLayer.h:46
int m_nmod
Definition SPLayer.h:36
int side() const
Definition SPLayer.h:48
const std::string & name() const
Definition SPLayer.h:51