ATLAS Offline Software
Loading...
Searching...
No Matches
SCT3_RawData.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
6// SCT3_RawData.cxx
7// Implementation file for class SCT3_RawData
9// (c) ATLAS Detector software
11// Version 1.0 11/12/2004 MJ Costa
13
14#include <new>
17
18// default constructor
20 SCT_RDORawData(Identifier(), 0) //call base-class constructor
21{}
22
23// Constructor with parameters:
24SCT3_RawData::SCT3_RawData(const Identifier rdoId, const unsigned int word, const std::vector<int>* errorhit) :
25 SCT_RDORawData( rdoId, word), //call base-class constructor
26 m_errorCondensedHit (*errorhit)
27{
28}
29
31 const unsigned int word,
32 std::vector<int>&& errorhit)
33 : SCT_RDORawData( rdoId, word),
34 m_errorCondensedHit (std::move(errorhit))
35{
36}
std::vector< int > m_errorCondensedHit
SCT_RDORawData(const Identifier rdoId, const unsigned int word)
STL namespace.