//---------------------------------------------------------- // analysis driver script: shows how to use TCtvmft (STNTUPLE interface // to CTVMFT) // author: Thilo Pauly //---------------------------------------------------------- // // run with: stnfit.exe kshort_ctvmft_ana.C // { TChain chain("STNTUPLE"); chain.Add("/cdf/data21/s2/G_03349.0004/Stn/data/stntup_B_CHARM/stntup.142177.B_CHARM.root"); TStnAna x(&chain); gSystem->CompileMacro("TKShortCtvmftModule.cc","+"); TKShortCtvmftModule *m = new TKShortCtvmftModule(); m->SetFilteringMode(0); m->SetDebugLevel(0); x.AddModule(m); x.SetNEventsToReport(100); x.Run(); }