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 |
|
---|
15 | PAWExecutor::PAWExecutor(PIACmd *piac, PIStdImgApp* app)
|
---|
16 | : mApp(app)
|
---|
17 | {
|
---|
18 | string kw, usage;
|
---|
19 | string hgrp = "pawCmd";
|
---|
20 | kw = "h/op/res";
|
---|
21 | usage = "Reset histogram - " ;
|
---|
22 | piac->RegisterCommand(kw,usage,this,hgrp);
|
---|
23 | }
|
---|
24 |
|
---|
25 | PAWExecutor::~PAWExecutor()
|
---|
26 | {
|
---|
27 | }
|
---|
28 |
|
---|
29 | int PAWExecutor::Execute(string& kw, vector<string>& tokens)
|
---|
30 | {
|
---|
31 | if(kw == "h/op/res") {
|
---|
32 | cout << " CMV-A faire - h/op/res pas implemente " << endl;
|
---|
33 | return(0);
|
---|
34 | }
|
---|
35 | else return(1);
|
---|
36 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.