Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:14

0001 //
0002 // Base class for pixel configuration data
0003 // provide a place to implement common interfaces
0004 // for these objects. Any configuration data
0005 // object that is to be accessed from the database
0006 // should derive from this class
0007 //
0008 
0009 #include <iostream>
0010 #include <fstream>
0011 #include "CalibFormats/SiPixelObjects/interface/PixelConfigBase.h"
0012 
0013 using namespace pos;
0014 
0015 PixelConfigBase::PixelConfigBase(std::string description, std::string creator, std::string date)
0016     : description_(description), creator_(creator), date_(date) {}