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