00001 /* @version $Revision: 1328 $ * @modifiedby $Author: jacquem $ * @lastmodified $Date: 2011-10-03 17:04:17 +0200 (Mon, 03 Oct 2011) $ */ 00002 #include "geometry/GassiplexChannel.hh" 00003 #include "geometry/Chip.hh" 00004 #include "geometry/Chamber.hh" 00005 00006 #include "tools/Log.hh" 00007 #include "tools/Toolbox.hh" 00008 00009 #include <iostream> 00010 00011 00012 using namespace std; 00013 00014 00015 //--------------- Constructeur -------------// 00016 GassiplexChannel::GassiplexChannel(const Chip& aChip, const i32 aColumn,const i32 aRow, const i32 aId):Channel(aChip, "GassiplexChannel channel",aColumn,aRow,aId) 00017 { 00018 //FILE_LOG(logDEBUG) << "------GassiplexChannel constructor.:hardId: "<< hardId << " ,column: " << column << " ,row: " << row << endl; 00019 00020 } 00021 //--------------- Destructeur -------------// 00022 GassiplexChannel::~GassiplexChannel() 00023 { 00024 FILE_LOG(logDEBUG1) << "------GassiplexChannel destructeur" << endl; 00025 } 00026 00027