Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:18:59

0001 #ifndef JETMETCOMP_HH
0002 #define JETMETCOMP_HH
0003 
0004 class JetMETComp {
0005 public:
0006   JetMETComp(map<string,double>);
0007   ~JetMETComp(){};
0008   
0009   void MakePlot(string name);
0010   void WriteFile();
0011 
0012 private:
0013   map<string,double> compatibilities;
0014   vector<string> lines;
0015   
0016 };
0017 
0018 #endif