In [1]:
from ROOTaaS.iPyROOT import ROOT


Welcome to ROOTaas Beta

In [2]:
%%dcl
class A{
public:
  A(){std::cout << "A ctor." << std::endl;}
};


Out[2]:
True

In [3]:
ROOT.A()


Out[3]:
<ROOT.A object at 0x7fcadc350ca0>
A ctor.

In [ ]: