对std::vector px进行存储到TTree T的声明Branch的方法正确的是:A、 T.Branch(“px”,*px);B、 T->Branch(“px”,*px);C、 T->Branch(“px”,&px);D、 T.Branch(“px”,&px);