Go to the documentation of this file.00001 #include "ForIA/DetectorErrors.hh"
00002
00003 namespace ForIA{
00004
00005 DetectorErrors::DetectorErrors(unsigned int pix, unsigned int sct, unsigned int trt,
00006 unsigned int lar, unsigned int tile,
00007 unsigned int muon,
00008 unsigned int forward):
00009 m_pix(pix), m_sct(sct), m_trt(trt),
00010 m_lar(lar),
00011 m_tile(tile),
00012 m_muon(muon),
00013 m_forward(forward){
00014
00015 }
00016
00017 unsigned int DetectorErrors::pixel()const{
00018 return m_pix;
00019 }
00020
00021 unsigned int DetectorErrors::sct()const{
00022 return m_sct;
00023 }
00024
00025 unsigned int DetectorErrors::trt()const{
00026 return m_trt;
00027 }
00028
00029 unsigned int DetectorErrors::lar()const{
00030 return m_lar;
00031 }
00032
00033 unsigned int DetectorErrors::tile()const{
00034 return m_tile;
00035 }
00036
00037 unsigned int DetectorErrors::muon()const{
00038 return m_muon;
00039 }
00040
00041 unsigned int DetectorErrors::forward()const{
00042 return m_forward;
00043 }
00044
00045 }
00046
00047