CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_2_SLHC4_patch1/src/CalibFormats/SiPixelObjects/src/PixelConfigBase.cc

Go to the documentation of this file.
00001 //
00002 // Base class for pixel configuration data
00003 // provide a place to implement common interfaces
00004 // for these objects. Any configuration data
00005 // object that is to be accessed from the database
00006 // should derive from this class
00007 //
00008 
00009 #include <iostream>
00010 #include <fstream>
00011 #include "CalibFormats/SiPixelObjects/interface/PixelConfigBase.h"
00012 
00013 
00014 using namespace pos;
00015 
00016 PixelConfigBase::PixelConfigBase(std::string description,
00017                                  std::string creator,
00018                                  std::string date):
00019   description_(description),
00020   creator_(creator),
00021   date_(date){
00022 }