ATLAS Offline Software
Loading...
Searching...
No Matches
LArTdriftComplete.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7
9
11
12/* Fill transient object in ATHENA *****************************************
13 */
14void LArTdriftComplete::set(const HWIdentifier& CellID, float tdrift ) {
15
16 LArTdriftP t;
17 t.m_Tdrift = tdrift ;
18
19 setPdata(CellID,t);
20
21}
22
23
24/* retrieve Tdrift ******************************************************
25 */
26const float& LArTdriftComplete::Tdrift(const HWIdentifier& CellID) const
27{
28 const LArTdriftP& t = get(CellID);
29 return (t.m_Tdrift);
30}
void setPdata(const HWIdentifier id, const LArTdriftP &payload, unsigned int gain=0)
ConstReference get(const HWIdentifier id, unsigned int gain=0) const
void set(const HWIdentifier &CellID, float tdrift)
virtual const float & Tdrift(const HWIdentifier &CellID) const