ATLAS Offline Software
Loading...
Searching...
No Matches
InDetRawDataContainer_p3.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef INDETRAWDATACONTAINER_P3_H
6#define INDETRAWDATACONTAINER_P3_H
7
8/*
9 For the TRT, the channel Ids are dropped from the persistent container and so
10 the p2 version "std::vector<InDetRawData_p2> m_rawdata;" is replaced with
11 the p3 version "std::vector<unsigned int> m_rawdata;".
12*/
13
14#include <vector>
15#include <string>
17
19{
20 public:
24 private:
25 std::vector<InDetRawDataCollection_p1> m_collections;
26 std::vector<unsigned int> m_rawdata;
27};
28
29// inlines
30inline
32
33#endif
std::vector< InDetRawDataCollection_p1 > m_collections
std::vector< unsigned int > m_rawdata
InDetRawDataContainer_p3()
Default constructor.