Skip to content
Snippets Groups Projects
Commit fbb38d01 authored by Atlas-Software Librarian's avatar Atlas-Software Librarian Committed by Graeme Stewart
Browse files

'CMakeLists.txt' (LArRawUtils-00-09-28)

	* Tagging LArRawUtils-00-09-28.
	* LArRawUtils/LArTT_Selector.icc: Fix assignment op.
parent 98e67610
No related branches found
No related tags found
Loading
################################################################################
# Package: LArRawUtils
################################################################################
# Declare the package name:
atlas_subdir( LArRawUtils )
# Declare the package's dependencies:
atlas_depends_on_subdirs( PUBLIC
Calorimeter/CaloIdentifier
Calorimeter/CaloTTDetDescr
Control/AthenaBaseComps
Control/AthenaKernel
Control/StoreGate
DetectorDescription/Identifier
GaudiKernel
LArCalorimeter/LArIdentifier
LArCalorimeter/LArRawEvent
PRIVATE
Calorimeter/CaloTriggerTool
DetectorDescription/AtlasDetDescr
LArCalorimeter/LArTools )
# Component(s) in the package:
atlas_add_library( LArRawUtilsLib
src/*.cxx
PUBLIC_HEADERS LArRawUtils
LINK_LIBRARIES CaloIdentifier CaloTTDetDescr AthenaBaseComps AthenaKernel Identifier GaudiKernel LArIdentifier LArRawEvent StoreGateLib SGtests CaloTriggerToolLib LArToolsLib
PRIVATE_LINK_LIBRARIES AtlasDetDescr )
atlas_add_component( LArRawUtils
src/components/*.cxx
LINK_LIBRARIES CaloIdentifier CaloTTDetDescr AthenaBaseComps AthenaKernel StoreGateLib SGtests Identifier GaudiKernel LArIdentifier LArRawEvent CaloTriggerToolLib AtlasDetDescr LArToolsLib LArRawUtilsLib )
......@@ -49,13 +49,14 @@ typename LArTT_Selector<CONTAINER>::const_iterator&
LArTT_Selector<CONTAINER>::const_iterator:: operator =
( const LArTT_Selector<CONTAINER>::const_iterator & it )
{
if (this != &it) {
m_vec_itpair = it.m_vec_itpair ;
m_pair_it = it.m_pair_it ;
m_obj_it = it.m_obj_it ;
m_obj_it_end = it.m_obj_it_end ;
}
return *this;
return *this;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment