• Main Page
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

/Users/jmonk/Physics/ForIA/src/L2SpacePoints.cxx

Go to the documentation of this file.
00001 #include "ForIA/L2SpacePoints.hh"
00002 
00003 namespace ForIA{
00004  
00005   L2SpacePoints::L2SpacePoints(): m_gotSctTotal(false){
00006     
00007   }
00008   
00009   size_t L2SpacePoints::nSctHits()const{
00010     if(m_gotSctTotal) return m_sctTotal;
00011     
00012     m_sctTotal = nSctEndCapAHits() + nSctBarrelHits() + nSctEndCapCHits();
00013     
00014     m_gotSctTotal = true;
00015     
00016     return m_sctTotal;
00017   }
00018 
00019   size_t L2SpacePoints::nSctEndCapAHits()const{
00020     return m_sctEndCapA;
00021   }
00022   
00023   size_t L2SpacePoints::nSctEndCapCHits()const{
00024     return m_sctEndCapC;
00025   }
00026  
00027   size_t L2SpacePoints::nSctBarrelHits()const{
00028     return m_sctBarrel;
00029   }
00030   
00031 }

Generated on Mon Jul 30 2012 16:56:35 for ForIA by  doxygen 1.7.2