source: Sophya/trunk/SophyaPI/PIext/pawexecut.cc@ 463

Last change on this file since 463 was 463, checked in by ercodmgr, 26 years ago

HelpToTex + CopyObj (ds Adapter) et PawExecutor cmv+Reza 12/10/99

File size: 658 bytes
Line 
1#include <stdio.h>
2#include <stdlib.h>
3#include <ctype.h>
4#include <iostream.h>
5#include <typeinfo>
6
7#include "histos.h"
8#include "histos2.h"
9#include "ntuple.h"
10
11#include "pawexecut.h"
12#include "nobjmgr.h"
13#include "pistdimgapp.h"
14
15PAWExecutor::PAWExecutor(PIACmd *piac, PIStdImgApp* app)
16 : mApp(app)
17{
18string kw, usage;
19string hgrp = "pawCmd";
20kw = "h/op/res";
21usage = "Reset histogram - " ;
22piac->RegisterCommand(kw,usage,this,hgrp);
23}
24
25PAWExecutor::~PAWExecutor()
26{
27}
28
29int PAWExecutor::Execute(string& kw, vector<string>& tokens)
30{
31if(kw == "h/op/res") {
32 cout << " CMV-A faire - h/op/res pas implemente " << endl;
33 return(0);
34 }
35else return(1);
36}
Note: See TracBrowser for help on using the repository browser.