ATLAS Offline Software
Loading...
Searching...
No Matches
InDetRawDataContainer_p2.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#ifndef INDETRAWDATACONTAINER_P2_H
6#define INDETRAWDATACONTAINER_P2_H
7
8/*
9
10Persistent represenation of an IndetRawDataContainer.
11This is used for all the RDO conainers with base RDO objects.
12The converter will take care of creating TRT/SCT/Pixel
13RDO containers out of it.
14
15The assumption is that objects contained in a container
16are all of the same type, eg containers are hompgeneous.
17This persistent container should only be used for objects
18that contain InDetRawData_p2.
19
20Author: Davide Costanzo
21
22*/
23
24#include <vector>
25#include <string>
28
29
31{
32 public:
38 private:
39 std::vector<InDetRawDataCollection_p1> m_collections;
40 std::vector<InDetRawData_p2> m_rawdata;
41};
42
43
44// inlines
45
46inline
48
49#endif
std::vector< InDetRawDataCollection_p1 > m_collections
std::vector< InDetRawData_p2 > m_rawdata
InDetRawDataContainer_p2()
Default constructor.