Skip to content
Snippets Groups Projects
Commit a29268bd authored by Julian Pychy's avatar Julian Pychy
Browse files

fixed compilation warning, moved generator output

parent 32c2790d
No related branches found
No related tags found
No related merge requests found
......@@ -81,8 +81,8 @@ void AppBase::dumpDefaultParams(){
void AppBase::generate(fitParams& theParams){
std::shared_ptr<PwaGen> pwaGenPtr(new PwaGen());
pwaGenPtr->generate(GlobalEnv::instance()->Channel()->Lh(), theParams);
GlobalEnv::instance()->fitParamsBase()->printParams(theParams);
pwaGenPtr->generate(GlobalEnv::instance()->Channel()->Lh(), theParams);
}
void AppBase::readEvents(EventList& theEventList, std::vector<std::string>& fileNames, ChannelID channelID, bool withEvtWeight, int evtStart, int evtStop){
......@@ -434,7 +434,7 @@ void AppBase::printFitResult(FunctionMinimum& min, fitParams& theStartparams, st
boost::archive::text_oarchive boostOutputArchive(serializationStream);
if(min.HasValidCovariance()){
PwaCovMatrix thePwaCovMatrix(theCovMatrix, finalUsrParameters, finalFitParams);
const PwaCovMatrix thePwaCovMatrix(theCovMatrix, finalUsrParameters, finalFitParams);
boostOutputArchive << thePwaCovMatrix;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment