ATLAS Offline Software
TBLArDigitContainer_p1.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 // -------------------------------------------------------------------
6 // Persistent representation of TBEvent/TBLArDigitContainer
7 // See: https://twiki.cern.ch/twiki/bin/view/Atlas/TransientPersistentSeparation#TP_converters_for_component_type
8 // Author: Iftach Sadeh (iftach.sadeh@NOSPAMTODAYcern.ch) , February 2010
9 // -------------------------------------------------------------------
10 #ifndef TBLARDIGITCONTAINER_P1_H
11 #define TBLARDIGITCONTAINER_P1_H
12 
13 #include <vector>
14 
15 
17 {
18 
19 public:
20 
21  std::vector<unsigned int> m_channelID;
22  std::vector<unsigned char> m_gain;
23  std::vector<unsigned short> m_nSamples;
24  std::vector<unsigned short> m_samples;
25 
26 };
27 
28 
29 #endif
TBLArDigitContainer_p1::m_nSamples
std::vector< unsigned short > m_nSamples
Definition: TBLArDigitContainer_p1.h:23
TBLArDigitContainer_p1::m_samples
std::vector< unsigned short > m_samples
Definition: TBLArDigitContainer_p1.h:24
TBLArDigitContainer_p1::m_channelID
std::vector< unsigned int > m_channelID
Definition: TBLArDigitContainer_p1.h:21
TBLArDigitContainer_p1::m_gain
std::vector< unsigned char > m_gain
Definition: TBLArDigitContainer_p1.h:22
TBLArDigitContainer_p1
Definition: TBLArDigitContainer_p1.h:17