void time()

{

  TStopwatch* t1 =new TStopwatch();
  string test("test");
  t1->Start();
  if(test=="test1"){}
  t1->Stop();
  Double_t t = t1->CpuTime();
  cout<<"time="<<t<<endl;
}  
