CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/Alignment/CocoaDaq/src/CocoaDaqReader.cc

Go to the documentation of this file.
00001 #include "CondFormats/OptAlignObjects/interface/OpticalAlignMeasurements.h"
00002 #include "Alignment/CocoaDaq/interface/CocoaDaqReader.h"
00003 
00004 CocoaDaqReader* CocoaDaqReader::theDaqReader = 0;
00005 
00006 //----------------------------------------------------------------------
00007 void CocoaDaqReader::SetDaqReader( CocoaDaqReader* reader ) 
00008 {
00009   if( theDaqReader != 0 ) {
00010     std::cerr << "!!FATAL ERROR CocoaDaqReader:: trying to instantiate two CocoaDaqReader " << std::endl;
00011     std::exception();
00012   }
00013 
00014   theDaqReader = reader; 
00015 }
00016 
00017 //----------------------------------------------------------------------
00018 void CocoaDaqReader::BuildMeasurementsFromOptAlign( std::vector<OpticalAlignMeasurementInfo>& measList )
00019 {
00020 
00021 }