code and log with StBTofMatchMaker

I use  StBTofMatchMaker instead of StVpdCalibMaker and StBtofCalibMaker 
// BTOF libraries

gSystem->Load("StBTofUtil");
gSystem->Load("StBTofMatchMaker");

// setting up chain and MuDST/DB Makers
StChain *chain = new StChain("StChain");
StMuDstMaker *muDstMaker = new StMuDstMaker(0,0,"",fileList,"MuDst.root",nfiles);
St_db_Maker *dbMk = new St_db_Maker("db","MySQL:StarDb","$STAR/StarDb","StarDb");

// instantiate both VPD and BTOF CalibMakers and point them to the MuDST
StBTofMatchMaker *btofMatch= new StBTofMatchMaker();
btofMatch->setMuDstIn();
btofMatch->SetDebug(1);

// continue with my private maker
StMyMaker *myMaker = new StMyMaker();