Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef JETMETCOMP_HH
#define JETMETCOMP_HH

class JetMETComp {
public:
  JetMETComp(map<string,double>);
  ~JetMETComp(){};
  
  void MakePlot(string name);
  void WriteFile();

private:
  map<string,double> compatibilities;
  vector<string> lines;
  
};

#endif