ROOT logo
TGraphErrors* v2CMS2030(Int_t color=1, Int_t marker=20, Int_t first=-1,Int_t last=-1)
{
  //commentme
  Int_t _nPoints = 6;
  if (last>_nPoints-1) last=_nPoints-1;
  if (last<0 && first<0) last=_nPoints-1;
  if (last<0) last=_nPoints-1+last;
  if (first<0) first=0;

  Double_t _x[] = {1.79, 2.24, 2.74, 3.46, 4.89, 6.75};
  Double_t _y[] = {0.161, 0.154, 0.169, 0.166, 0.131, 0.107};
  Double_t _xerr[] = {0, 0, 0, 0, 0, 0};
  Double_t _yerr[] = {0.033, 0.031, 0.022, 0.033, 0.029, 0.034};


  TGraphErrors* graph = new TGraphErrors(last-first+1, &_x[first], &_y[first], &_xerr[first], &_yerr[first]);
  graph->SetLineColor(color);
  graph->SetMarkerColor(color);
  graph->SetMarkerStyle(marker);
  return graph;
}
TGraphErrors* v2CMS3040(Int_t color=1, Int_t marker=20, Int_t first=-1,Int_t last=-1)
{
  //commentme
  Int_t _nPoints = 6;
  if (last>_nPoints-1) last=_nPoints-1;
  if (last<0 && first<0) last=_nPoints-1;
  if (last<0) last=_nPoints-1+last;
  if (first<0) first=0;

  Double_t _x[] = {1.79, 2.24, 2.74, 3.46, 4.89, 6.75};
  Double_t _y[] = {0.178, 0.175, 0.192, 0.180, 0.137, 0.118};
  Double_t _xerr[] = {0, 0, 0, 0, 0, 0};
  Double_t _yerr[] = {0.016, 0.017, 0.023, 0.024, 0.024, 0.018};


  TGraphErrors* graph = new TGraphErrors(last-first+1, &_x[first], &_y[first], &_xerr[first], &_yerr[first]);
  graph->SetLineColor(color);
  graph->SetMarkerColor(color);
  graph->SetMarkerStyle(marker);
  return graph;
}
TGraphErrors* v2CMS4050(Int_t color=1, Int_t marker=20, Int_t first=-1,Int_t last=-1)
{
  //commentme
  Int_t _nPoints = 6;
  if (last>_nPoints-1) last=_nPoints-1;
  if (last<0 && first<0) last=_nPoints-1;
  if (last<0) last=_nPoints-1+last;
  if (first<0) first=0;

  Double_t _x[] = {1.79, 2.24, 2.74, 3.46, 4.89, 6.75};
  Double_t _y[] = {0.192, 0.189, 0.194, 0.182, 0.153, 0.108};
  Double_t _xerr[] = {0, 0, 0, 0, 0, 0};
  Double_t _yerr[] = {0.012, 0.013, 0.020, 0.017, 0.016, 0.016};


  TGraphErrors* graph = new TGraphErrors(last-first+1, &_x[first], &_y[first], &_xerr[first], &_yerr[first]);
  graph->SetLineColor(color);
  graph->SetMarkerColor(color);
  graph->SetMarkerStyle(marker);
  return graph;
}

 v2CMS.C:1
 v2CMS.C:2
 v2CMS.C:3
 v2CMS.C:4
 v2CMS.C:5
 v2CMS.C:6
 v2CMS.C:7
 v2CMS.C:8
 v2CMS.C:9
 v2CMS.C:10
 v2CMS.C:11
 v2CMS.C:12
 v2CMS.C:13
 v2CMS.C:14
 v2CMS.C:15
 v2CMS.C:16
 v2CMS.C:17
 v2CMS.C:18
 v2CMS.C:19
 v2CMS.C:20
 v2CMS.C:21
 v2CMS.C:22
 v2CMS.C:23
 v2CMS.C:24
 v2CMS.C:25
 v2CMS.C:26
 v2CMS.C:27
 v2CMS.C:28
 v2CMS.C:29
 v2CMS.C:30
 v2CMS.C:31
 v2CMS.C:32
 v2CMS.C:33
 v2CMS.C:34
 v2CMS.C:35
 v2CMS.C:36
 v2CMS.C:37
 v2CMS.C:38
 v2CMS.C:39
 v2CMS.C:40
 v2CMS.C:41
 v2CMS.C:42
 v2CMS.C:43
 v2CMS.C:44
 v2CMS.C:45
 v2CMS.C:46
 v2CMS.C:47
 v2CMS.C:48
 v2CMS.C:49
 v2CMS.C:50
 v2CMS.C:51
 v2CMS.C:52
 v2CMS.C:53
 v2CMS.C:54
 v2CMS.C:55
 v2CMS.C:56
 v2CMS.C:57
 v2CMS.C:58
 v2CMS.C:59
 v2CMS.C:60
 v2CMS.C:61
 v2CMS.C:62
 v2CMS.C:63
 v2CMS.C:64
 v2CMS.C:65