Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:57

0001 #ifndef BLOBPEDESTALS_H
0002 #define BLOBPEDESTALS_H
0003 #include "CondFormats/Serialization/interface/Serializable.h"
0004 
0005 #include <vector>
0006 class BlobPedestals {
0007 public:
0008   BlobPedestals();
0009   virtual ~BlobPedestals();
0010   std::vector<unsigned int> m_pedestals;
0011 
0012   COND_SERIALIZABLE;
0013 };
0014 #endif