#include #include #include #include #include #include "histos.h" #include "histos2.h" #include "ntuple.h" #include "pawexecut.h" #include "nobjmgr.h" #include "pistdimgapp.h" PAWExecutor::PAWExecutor(PIACmd *piac, PIStdImgApp* app) : mApp(app) { string kw, usage; string hgrp = "pawCmd"; kw = "h/op/res"; usage = "Reset histogram - " ; piac->RegisterCommand(kw,usage,this,hgrp); } PAWExecutor::~PAWExecutor() { } int PAWExecutor::Execute(string& kw, vector& tokens) { if(kw == "h/op/res") { cout << " CMV-A faire - h/op/res pas implemente " << endl; return(0); } else return(1); }