CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/EventFilter/DTRawToDigi/plugins/DTROSErrorNotifier.cc

Go to the documentation of this file.
00001 /* file 
00002  *
00003  *  $Date: 2008/01/22 18:46:41 $
00004  *  $Revision: 1.4 $
00005  *  \author  M. Zanetti  INFN Padova
00006  */
00007 
00008 #include <EventFilter/DTRawToDigi/plugins/DTROSErrorNotifier.h>
00009 
00010 //using namespace edm;
00011 using namespace std;
00012 
00013 #include <iostream>
00014 
00015 
00016 DTROSErrorNotifier::DTROSErrorNotifier(DTROSErrorWord error ): error_(error) {}
00017 
00018 
00019 DTROSErrorNotifier::~DTROSErrorNotifier() {}
00020 
00021 
00022 void DTROSErrorNotifier::print() {
00023 
00024     cout<<"[DTUnpackingModule]: WARNING!! ROS Error of type "<<error_.errorType()
00025         <<", from ROB "<<error_.robID()<<endl;
00026 
00027 }