CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/QCDAnalysis/UEAnalysis/root/UEAnalysisWeight.h

Go to the documentation of this file.
00001 #ifndef UEAnalysisWeight_h
00002 #define UEAnalysisWeight_h
00003 
00004 #include <iostream>
00005 #include <fstream>
00006 #include <string>
00007 #include <vector>
00008 
00009 class UEAnalysisWeight {
00010  public :
00011 
00012   UEAnalysisWeight();
00013   ~UEAnalysisWeight(){}
00014   std::vector<float> calculate(std::string,std::string,float);
00015   std::vector<float> calculate();
00016   
00017  private:
00018   
00019   std::vector<float> fakeTable;
00020   //Once we have access to teh date we have to define
00021   //the relative table that we must use in order to merge
00022   //toghether the differen stream
00023 
00024 };
00025 
00026 #endif