CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_2_9_HLT1_bphpatch4/src/CalibCalorimetry/CaloMiscalibTools/interface/CaloMiscalibMap.h

Go to the documentation of this file.
00001 #ifndef _CALO_MISCALIB_MAP_H
00002 #define _CALO_MISCALIB_MAP_H
00003 
00004 #include <iostream>
00005 #include "DataFormats/DetId/interface/DetId.h"
00006 #include <map>
00007 
00008 class CaloMiscalibMap{
00009 
00010 public:
00011 CaloMiscalibMap(){}
00012 virtual ~CaloMiscalibMap(){}
00013 
00014 public:
00015 
00016 
00017 virtual void addCell(const DetId &cell, float scaling_factor)=0;
00018 
00019 };
00020 
00021 
00022 #endif