Go to the documentation of this file.00001 #ifndef HCALConfigDBTools_XMLTools_LMap_h
00002 #define HCALConfigDBTools_XMLTools_LMap_h
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00020
00021
00022
00023
00024
00025
00026
00027 #include<vector>
00028 #include <string.h>
00029 #include <fstream>
00030 #include <boost/shared_ptr.hpp>
00031
00032 #include "DataFormats/HcalDetId/interface/HcalSubdetector.h"
00033
00034
00035 class HcalEmap
00036 {
00037 public:
00038 HcalEmap(){}
00039 HcalEmap( std::string filename ){ read_map(filename); }
00040 ~HcalEmap(){}
00041
00042 class HcalEmapRow
00043 {
00044 public:
00045 int rawId,crate,slot,dcc,spigot,fiber,fiberchan,ieta,iphi,idepth;
00046 std::string topbottom,subdet;
00047
00048 HcalEmapRow(){
00049 rawId=0;
00050 crate=0;
00051 slot=0;
00052 dcc=0;
00053 spigot=0;
00054 fiber=0;
00055 fiberchan=0;
00056 ieta=0;
00057 iphi=0;
00058 idepth=0;
00059 topbottom="";
00060 subdet="";
00061 }
00062 ~HcalEmapRow(){};
00063
00064 bool operator<( const HcalEmapRow & other) const;
00065
00066 };
00067
00068 int read_map( std::string filename );
00069
00070 std::vector<HcalEmap::HcalEmapRow> & get_map( void );
00071
00072 protected:
00073 std::vector<HcalEmapRow> map;
00074 };
00075
00076
00077
00078 class HcalEmap_test {
00079 public:
00080 HcalEmap_test(){}
00081 ~HcalEmap_test(){}
00082
00083 int test_read_map( std::string filename );
00084 };
00085
00086 #endif