Newer
Older
TestStandRepository / Software / Tools / .svn / text-base / Lib.C.svn-base
@Federica Lionetto Federica Lionetto on 7 Oct 2014 1010 bytes Added Tools folder
  1. //************************************************
  2. // Author: Federica Lionetto
  3. // Created on: 06/27/2014
  4. //************************************************
  5.  
  6. /*
  7. List of useful libraries.
  8. */
  9.  
  10. // Header guard.
  11. #ifndef __LIB_C_INCLUDED__
  12. #define __LIB_C_INCLUDED__
  13.  
  14. #include "TAxis.h"
  15. #include "TBenchmark.h"
  16. #include "TCanvas.h"
  17. #include "TFile.h"
  18. #include "TF1.h"
  19. #include "TGraph.h"
  20. #include "TGraphErrors.h"
  21. #include "TH1.h"
  22. #include "TH2.h"
  23. #include "TH3.h"
  24. #include "TLegend.h"
  25. #include "TLine.h"
  26. #include "TLorentzVector.h"
  27. #include "TMath.h"
  28. #include "TMultiGraph.h"
  29. #include "TNtuple.h"
  30. #include "TPad.h"
  31. #include "TPaveStats.h"
  32. #include "TPaveText.h"
  33. #include "TProfile.h"
  34. #include "TRandom.h"
  35. #include "TRandom3.h"
  36. #include "TROOT.h"
  37. #include "TString.h"
  38. #include "TStyle.h"
  39. #include "TSystem.h"
  40. #include "TTree.h"
  41. #include "TVirtualPad.h"
  42.  
  43. #include <stdio.h>
  44. #include <stdlib.h>
  45.  
  46. #include <iostream>
  47. #include <string>
  48. #include <vector>
  49.  
  50. // #include "Alibava/AsciiRoot.h"
  51.  
  52. using namespace std;
  53.  
  54. #endif