00001 00002 #include "AlgFarDetDeadChip.h" 00003 00004 #include "Algorithm/AlgConfig.h" 00005 #include "Candidate/CandContext.h" 00006 #include "MessageService/MsgService.h" 00007 #include "JobControl/JobCModuleRegistry.h" 00008 00009 #include "FarDetDeadChipHandle.h" 00010 #include "VaChip.h" 00011 00012 // 00013 // $Log $ 00014 // 00015 00016 ClassImp(AlgFarDetDeadChip) 00017 00018 CVSID("$Id: AlgFarDetDeadChip.cxx,v 1.2 2006/04/21 17:40:11 blake Exp $"); 00019 00020 AlgFarDetDeadChip::AlgFarDetDeadChip() 00021 { 00022 00023 } 00024 00025 AlgFarDetDeadChip::~AlgFarDetDeadChip() 00026 { 00027 00028 } 00029 00030 void AlgFarDetDeadChip::RunAlg(AlgConfig & /*ac*/, CandHandle &ch, CandContext &cx) 00031 { 00032 MSG("AlgFarDetDeadChip", Msg::kDebug) << " AlgFarDetDeadChip::RunAlg(...) " << endl; 00033 00034 FarDetDeadChipHandle& deadchip = dynamic_cast<FarDetDeadChipHandle&>(ch); 00035 00036 VaChip* mychip = (VaChip*)(cx.GetDataIn()); 00037 deadchip.SetVaChip(mychip); 00038 00039 return; 00040 } 00041 00042 void AlgFarDetDeadChip::Trace(const char * /* c */) const 00043 { 00044 00045 } 00046 00047
1.3.9.1