调用RooGaussian变量G的函数的fitTo时,如果待拟合的数据是RooDataSet  data定义形式,即data不是指针而是变量,那么以下那种写法是正确的:A、 G.fitTo(&data) B、 G.fitTo(data);C、 G.fitTo(**data)D、 G.fitTo(*data);