File: rootmccode.C

package info (click to toggle)
mccode 3.5.19%2Bds5-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,113,256 kB
  • sloc: ansic: 40,697; python: 25,137; yacc: 8,438; sh: 5,405; javascript: 4,596; lex: 1,632; cpp: 742; perl: 296; lisp: 273; makefile: 226; fortran: 132
file content (985 lines) | stat: -rw-r--r-- 27,131 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
/* 
Macro to produce ROOT histograms from McStas simulations (.dat or .sim file).
Authors: Erik B Knudsen and Esben Klinkby. Partly based on macro inherited from Peter Christiansen.

This to be considered experimental. 
Testing has so far been mimimal - plotting works with ROOT v. 5.34/14 on linux.

Milage reports are welcome (good or bad) to erkn_AT_fysik.dtu.dk
*/

#ifndef ROOT_TH1
#include "TH1.h"
#endif

#ifndef ROOT_TH2
#include "TH2.h"
#endif

#ifndef ROOT_TGraphErrors
#include "TGraphErrors.h"
#endif

#ifndef __IOSTREAM__
#include <iostream>
#endif

#ifndef __FSTREAM__
#include <fstream>
#endif

#include <string>
#include <list>
#include <iterator>
#include <vector>
#include <cstdlib>
#include <cerrno>

#include "TMap.h"
#include "TString.h"
#include "TObjString.h"
#include "TObject.h"

using std::cout;
using std::endl;

class Mccoderun {
  TString command;
  string outfile,cfile;
  bool compd_with_mpi;
  string flavour;

  public:
  string instrument,outdir,args;
  int np,help,trace,fc,ft;
  unsigned long long ncount;

  //Mccoderun(string instrument="",int help=0, int mpi=0, int fc=0, int ft=0, int trace=0, string instrument="", string outdir="", unsigned long long n=1000000);
  Mccoderun(string instrument="instrument.instr",unsigned long long n=1000000, string outdir="", string args="", int help=0, int mpi=0, int fc=0, int ft=0, int trace=0);
  Mccoderun(string,unsigned long long n=1000000,string);
  Mccoderun(string);
  int set_flavour();
  int run();
  int exec();
  int generate_c();
  int compile();
};

Mccoderun::Mccoderun(string instrument, unsigned long long n, string outdir, string args, int help, int mpi, int fc, int ft, int trace){
  stringstream tmp;
  tmp << "mcrun " << instrument << (help?" -h":"") << (fc?" -c":"") << (ft?" -t":"") << (outdir!=""?" -d "+outdir:"") << " -n " << n;
  this->command = tmp.str();
  cout << "meh command to run is: " <<this->command<<endl;
  this->instrument=instrument;
  this->outfile=instrument.substr(0,instrument.find_last_of('.')) + ".out";
  this->cfile=instrument.substr(0,instrument.find_last_of('.')) + ".c";
  this->outdir=outdir;
  this->help=help;
  this->ncount=n;
  this->np=mpi;
  this->ft=ft;
}

Mccoderun::Mccoderun(string instrument, unsigned long long ncount,string args){
  char tmpcommand[512];
  snprintf(tmpcommand,512,"mcrun %s %s -n %ld\n",instrument.c_str(),args.c_str(),ncount);
  this->command = tmpcommand;
  cout << "command to run is: " <<this->command<<endl; 
  this->instrument=instrument;
  this->outfile=instrument.substr(0,instrument.find_last_of('.')) + ".out";
  this->cfile=instrument.substr(0,instrument.find_last_of('.')) + ".c";
  this->outdir="";
  this->args=args;
  this->ft=ft;
}

Mccoderun::Mccoderun(string instrument){ 
  cout << "construct from single string"<<endl;
  /*this shoudl actually try to read default configs from file*/
  this->instrument=instrument;
  this->outfile=instrument.substr(0,instrument.find_last_of('.')) + ".out";
  this->cfile=instrument.substr(0,instrument.find_last_of('.')) + ".c";
  this->help=0;
  this->outdir="";
  this->args="";
  this->np=1;
  this->ncount=1000000;
}

int Mccoderun::run(){
  /*stat the files referenced and do the system calls necessary*/
  Long_t ri,rc,ro,id,size,flags,mtime_instr,mtime_c, mtime_out;

  if (this->fc==0){
    ri=gSystem->GetPathInfo(this->instrument.c_str(),&id,&size,&flags,&mtime_instr);
    if (ri){
      cout << "Cannot stat instrument file " << this->instrument.c_str() << ". Aborting!" <<endl;
      return -1;
    }
    rc=gSystem->GetPathInfo(this->cfile.c_str(),&id,&size,&flags,&mtime_c);
    cout << rc <<" "<<mtime_c <<" "<< mtime_instr << endl;


    if(rc || mtime_c < mtime_instr){
      this->generate_c();
    }
 
    ro=gSystem->GetPathInfo(this->outfile.c_str(),&id,&size,&flags,&mtime_out);
    if(ro || mtime_out < mtime_c){
      this->compile();
    }
  }else{
    /*force compile*/
    this->generate_c();
    this->compile();
  }

  /*and - now run the actual simulation*/
  this->exec();

}

int Mccoderun::generate_c(){
  stringstream ss;
  ss << this->flavour << " -t " << this->instrument << " -o" << this->cfile;
  cout << ss.str() <<endl;
  system(ss.str().c_str());
  return 0;
}

int Mccoderun::exec(){
  string tmp;
  stringstream cmdlo,total;
  cout << "About to run this file: "<< this->outfile <<endl;
  cmdlo << ((this->help)?" -h":"") << ((this->ft)?" -t":"") << ((this->outdir)!=""?" -d "+(this->outdir):"") << " -n " << (this->ncount);
  total << "./" << this->outfile << cmdlo.str() << " " << this->args;
  cout <<"Complete command: " << total.str() << endl;
  system(total.str().c_str());
}

int Mccoderun::compile(){
  if(this->np>1){
    /*compile with mpi and set a flag*/
    this->compd_with_mpi=true;
    cout << "mpi not supported yet" <<endl;
    return 0;
  }else{
    this->compd_with_mpi=false;
    stringstream ss;
    ss << "cc " << this->cfile << " -o" << this->outfile << " -lm";
    cout << ss.str() << endl;
    system(ss.str().c_str());
    return 0;
  }
}

int set_flavour(string flavour){
  if ( flavour=="mcstas"||flavour=="McStas" || flavour=="MCSTAS")
    this->flavour="mcstas";
  else if (flavour=="mcxtrace" || flavour=="McXtrace" || flavour=="MCXTRACE")
    this->flavour="mcxtrace";
  else{
    cerr << "Unknown flavour: " << flavour <<". Aborting." <<endl;
    return 1;
  }
  return 0;
}

Mccoderun* mcrun(string instrument, string args){
  string s;
  stringstream ss(args); // Insert the string into a stream
  vector<string> tokens; // Create vector to hold instrument defined arguments
  
  Mccoderun *r1= new Mccoderun(instrument);
  this->set_flavour("mcstas");
  unsigned long long ul;

  while (ss >> s){
    if(s=="-n"){
      ss >> s;
      ul=(unsigned long long) strtod(s.c_str(),NULL);
      r1->ncount=ul;
      if(ul==ULONG_MAX){
        cerr << "Error converting ncount argument: "<< s << ". Aborting" << endl;
        return 1;
      }else{
        cout << "found ncount " <<r1->ncount<<endl;
      }
    }else if (s=="-c"){
      cout <<"Compile flag found"<<endl;
      r1->fc=1;
    }else if (s=="--mpi"){
      ss >> s;
      ul=strtoul(s.c_str(),NULL,10);
      r1->np= ul;
      if(ul){
        cerr << "Error converting mpi argument: "<< s << ". Aborting" << endl;
        return 1;
      }
    }else if (s=="-h" || s=="--help"){
      cout << "Print usage" << endl;
    }else{
      tokens.push_back(s);
    }
  }
  /*all the non-caught arguments are in the token vector*/
  for (auto it = tokens.begin(); it!=tokens.end(); ++it){
    if (!r1->args !="") {
      r1->args += " ";
    }
    r1->args+=*it;
  }
  std::cout <<r1->args<< endl;
  r1->run();

  return r1;
}

Mccoderun* mxrun(string instrument, string args){
  string s;
  stringstream ss(args); // Insert the string into a stream
  vector<string> tokens; // Create vector to hold instrument defined arguments
  
  Mccoderun *r1= new Mccoderun(instrument);
  this->set_flavour("mcxtrace");
  unsigned long long ul;

  while (ss >> s){
    if(s=="-n"){
      ss >> s;
      ul=(unsigned long long) strtod(s.c_str(),NULL);
      r1->ncount=ul;
      if(ul==ULONG_MAX){
        cerr << "Error converting ncount argument: "<< s << ". Aborting" << endl;
        return 1;
      }else{
        cout << "found ncount " <<r1->ncount<<endl;
      }
    }else if (s=="-c"){
      cout <<"Compile flag found"<<endl;
      r1->fc=1;
    }else if (s=="--mpi"){
      ss >> s;
      ul=strtoul(s.c_str(),NULL,10);
      r1->np= ul;
      if(ul){
        cerr << "Error converting mpi argument: "<< s << ". Aborting" << endl;
        return 1;
      }
    }else if (s=="-h" || s=="--help"){
      cout << "Print usage" << endl;
    }else{
      tokens.push_back(s);
    }
  }
  /*all the non-caught arguments are in the token vector*/
  for (auto it = tokens.begin(); it!=tokens.end(); ++it){
    if (!r1->args !="") {
      r1->args += " ";
    }
    r1->args+=*it;
  }
  std::cout <<r1->args<< endl;
  r1->run();

  return r1;
}

/*--------------------------------*/
class Mcplot {
  TCanvas *c1;
  int plotc;
  TObject *plots[256];
  TPad *pads[256];
  TString files[256];
  public:
  Mcplot();
  overviewplot();
  singleplot(int);
  overviewplotlog();
  singleplotlog(int);
};

Mcplot::Mcplot(string infilename="mccode.sim", bool verbose=0, bool doplot=1) {
  /*basically do what the script below does*/
  /*this functionality should be in a read method*/

  /*is infilename a directory or a regular file?
   * if dir ->search for a mccode file and read in the data by parsing the mccode.sim file 
   * if regular -> set plotc to 1 and only read that data*/
  cout << infilename << " recieved from outside." <<endl;
  FileStat_t buf;
  //gSystem->GetPathInfo(infilename.c_str(),&buf);
  Long_t r,id,size,flags,mtime;
  string workdir;
  c1=NULL;

  r=gSystem->GetPathInfo(infilename.c_str(),&id,&size,&flags,&mtime);

  cout << "stat returns: " << r <<endl;
  if( !r && (flags & 2)){
    cout << "Now that\'s a directory."<<endl;
    /*check for mccode.sim file, else die*/
    if (infilename[infilename.length()-1]=='/') {
      infilename += "mccode.sim";
    }else{
      infilename += "/mccode.sim";
    }

  } 
  r=gSystem->GetPathInfo(infilename.c_str(),&id,&size,&flags,&mtime);
  if( r || flags){
    cout << "Cannot open file "<<infilename<<" Aborting." <<endl;
    return NULL;
  }
  /*So we've now caught a single file*/
  int n=infilename.find_last_of('/');
  if( n==string::npos){
    workdir="./";
  }else{
    workdir=infilename.substr(0,n+1);
  }

  cout << "So I\'ve figured out that I should open the file: "<<infilename << " in the directory: " << workdir <<endl;
  /*so now infilename contains what we want to plot*/ 
  /*open the file and read it*/
  std::string line;
  ifstream infile(infilename.c_str());
  if(!infile.good()){
    cout << "Cannot open file: " << infilename << endl;
    return NULL;
  }
  this->plotc=0;
  while (std::getline(infile, line, '\n')){
    TString tline(line);
    //cout << line <<endl;
    if (line.find("filename:")!=string::npos){
      size_t i=line.find(':');
      string t=line.substr(i+1,line.length());
      /*trim t*/
      i=t.find_last_not_of(" \n\r\t");
      if( string::npos != i )
      {
        t=t.substr(0,i+1);
      }
      i = t.find_first_not_of(" \n\r\t");
      if( string::npos != i)
      {
        t=t.substr(i);
      }
      files[this->plotc] = workdir + t;
      this->plotc++;
      files[this->plotc]=0;
    }
  }
}

int Mcplot::plot(int verbose=0){
  Int_t nx=1;
  Int_t ny=1;
  while (nx*ny<this->plotc){
    if (nx<=ny) nx++;
    else ny++;
  }
  if(c1==NULL){
    c1=new TCanvas();
  }else{
    c1->Clear();
  }
  /*iterate through map and plot each datafile in pads on a canvas*/
  c1->Divide(nx,ny);
  
  for (int i=0; i<plotc; i++){
    c1->cd(i+1);
    char *s=files[i].Data();
    if(verbose) cout <<i<<"Plotting: "<<s<<endl;
    plots[i]=mccode_plot_hist(s,"",1.0,1.0,verbose=verbose);
    plots[i]->Draw();   
  }
  return 0;
}

Mcplot mcplot(string infilename="mccode.sim", int verbose=0){
  Mcplot *mp = new Mcplot(infilename,verbose=verbose);
  mp->plot();
  return mp;
}

Mcplot mxplot(string infilename="mccode.sim", int verbose=0){
  Mcplot *mp = new Mcplot(infilename,verbose=verbose);
  mp->plot();
  return mp;
}



/*to add canvas interactivity:
 * add and event handler function to subcanvas that reacts
 * to button press. This should then
 * a) store the subcanvas geometry
 * b) remove all other subcanvases from the parent
 * c) resize the subcanvas to full size
 * ... and then the other way around again when repressed.
 */


TObject *mccode_plot_hist(const Char_t *filename, const Char_t *histname, Float_t scaleX=1.0,
		 Float_t scaleY=1.0,
		 bool verbose=0){
    
    ifstream infile(filename);
    if(!infile.good()){
      cout << "Cannot open file: " << filename << endl;
      return 0;
    }
    
    std::string line;
    /*read and parse the file header*/
    TMap *header = new TMap;
    
    std::getline(infile, line, '\n');
    while(line[0]=='#') {
      TString tline(line.erase(0,1));
      /*Comment line - store it in the header*/
      int i=line.find(':');
      int j=line.find_first_not_of(' ',i+1);
      TString *t0 = new TString(tline(0,i));
      TString *t1 = new TString(tline(j,tline.Length()-1));
      t0->Remove(TString::kBoth,' ');
      t1->Remove(TString::kBoth,' ');
      header->Add(new TObjString(*t0),new TObjString(*t1));
      std::getline(infile, line, '\n');
    } 
    infile.close();

    TString str;
    str = ( (TObjString *) (header->GetValue("type")))->GetString();
    /*now we know what kind it is*/
    if (str.Contains("array_1d")){
      return mccode_plot_1dhist(filename, histname, scaleX, scaleY, verbose=verbose);
    }else if(str.Contains("array_2d")){
      return mccode_plot_2dhist(filename, histname, scaleX, scaleY, verbose=verbose);
    }
}

TH1F *mccode_plot_1dhist(const Char_t *filename, const Char_t *histname, Float_t scaleX=1.0,
		 Float_t scaleY=1.0,
		 bool verbose=0){
    // Read the content of a PGPLOT file into a histogram
    
    TH1F* hist = 0;

    Int_t nBins = 0;
    Float_t xmin = 0, xmax = 0;
    Float_t x, y, ey, nsim;

    ifstream infile(filename);
    if(!infile.good()){
      cout << "Cannot open file: " << filename << endl;
      return 0;
    }
    
    std::string line;
    /*read and parse the file header*/
    TMap *header = new TMap;
    
    std::getline(infile, line, '\n');
    while(line[0]=='#') {
      TString tline(line.erase(0,1));
      /*Comment line - store it in the header*/
      int i=line.find(':');
      int j=line.find_first_not_of(' ',i+1);
      TString *t0 = new TString(tline(0,i));
      TString *t1 = new TString(tline(j,tline.Length()-1));
      t0->Remove(TString::kBoth,' ');
      t1->Remove(TString::kBoth,' ');
      if (verbose) cout << "# " << "key: " << *t0 << " value: " << *t1 <<endl;
      header->Add(new TObjString(*t0),new TObjString(*t1));
      std::getline(infile, line, '\n');
    } 
      
    /*extract some important values from the header - */
    std::string str;
    str = ( (TObjString *) (header->GetValue("type")))->GetString();
    sscanf (str.c_str(),"array_1d(%d)",&nBins);
    str = ( (TObjString *) (header->GetValue("xlimits")))->GetString();
    sscanf (str.c_str(),"%f %f",&xmin,&xmax);
    TString xlabel=( (TObjString *) (header->GetValue("xlabel")))->GetString(); 
    TString ylabel=( (TObjString *) (header->GetValue("ylabel")))->GetString(); 
    
    /*build title of detector name and statistics etc>*/
    TString compname=( (TObjString *) (header->GetValue("component")))->GetString();
    TString outfilename=( (TObjString *) (header->GetValue("filename")))->GetString();
    TString statistics=( (TObjString *) (header->GetValue("statistics")))->GetString();

    /*Now read the data block 1D*/
    if(hist==0)
      if (histname!=""){
      hist = new TH1F(histname, 0, nBins, scaleX*xmin, scaleX*xmax);
      }else{
        hist = new TH1F(filename, 0, nBins, scaleX*xmin, scaleX*xmax);
      }   
    hist->Sumw2();
    
    while(std::getline(infile, line, '\n')){
      Int_t res = sscanf(line.c_str(), "%f %f %f %f", &x, &y, &ey, &nsim);
	
      if (res < 2) {
      // not a data line
        continue;
      }
      x *= scaleX;
	
      Int_t bin = hist->GetXaxis()->FindBin(x);
      hist->SetBinContent(bin, y);
      hist->SetBinError(bin, ey);
    }
  
  /*set a few plot details*/    
  
    hist->GetYaxis()->SetTitle(ylabel);
    hist->GetXaxis()->SetTitle(xlabel);
  
    hist->SetLineWidth(1);
    hist->SetStats(0);
    hist->SetTitle(compname +" ["+outfilename+"] " + statistics.ReplaceAll(";",""));
    hist->SetOption("E1"); 
  
    return hist;
} 

TH2F *mccode_plot_2dhist(const Char_t *filename, const Char_t *histname, Float_t scaleX=1.0,
		 Float_t scaleY=1.0,
		 bool verbose=0){
    // Read the content of a PGPLOT file into a histogram
    
    TH2F* hist = 0;
     
    Int_t nBinsX = 0, nBinsY;
    Float_t xmin = 0, xmax = 0;
    Float_t ymin = 0, ymax = 0;
    Float_t x, y, ex, ey, nsim;

    ifstream infile(filename);
    if(!infile.good()){
      cout << "Cannot open file: " << filename << endl;
      return 0;
    }
    
    std::string line;
    /*read and parse the file header*/
    TMap *header = new TMap;
    
    std::getline(infile, line, '\n');
    while(line[0]=='#') {
      TString tline(line.erase(0,1));
      /*Comment line - store it in the header*/
      int i=line.find(':');
      int j=line.find_first_not_of(' ',i+1);
      TString *t0 = new TString(tline(0,i));
      TString *t1 = new TString(tline(j,tline.Length()-1));
      t0->Remove(TString::kBoth,' ');
      t1->Remove(TString::kBoth,' ');
      if (verbose) cout << "# " << "key: " << *t0 << " value: " << *t1 <<endl;
      header->Add(new TObjString(*t0),new TObjString(*t1));
      if (!t0->BeginsWith("Data")) std::getline(infile, line, '\n');
    } 
      
    /*extract some important values from the header - */
    std::string str;
    str = ( (TObjString *) (header->GetValue("type")))->GetString();
    sscanf (str.c_str(),"array_2d(%d,%d)",&nBinsX,&nBinsY);
    str = ( (TObjString *) (header->GetValue("xylimits")))->GetString();
    sscanf (str.c_str(),"%f %f %f %f",&xmin,&xmax,&ymin,&ymax);
    str = ( (TObjString *) (header->GetValue("variables")))->GetString();
    TString xlabel=( (TObjString *) (header->GetValue("xlabel")))->GetString(); 
    TString ylabel=( (TObjString *) (header->GetValue("ylabel")))->GetString(); 
    TString zlabel=( (TObjString *) (header->GetValue("zlabel")))->GetString(); 
  
    /*build title of detector name and statistics etc>*/
    TString compname=( (TObjString *) (header->GetValue("component")))->GetString();
    TString outfilename=( (TObjString *) (header->GetValue("filename")))->GetString();
    TString statistics=( (TObjString *) (header->GetValue("statistics")))->GetString();

    xmin*=scaleX; xmax*=scaleX;
    ymin*=scaleY; ymax*=scaleY;
	
    hist = new TH2F(histname, 0, nBinsX, xmin, xmax,
			nBinsY, ymin, ymax);
	
    const Float_t dx = (xmax-xmin)/Float_t(nBinsX);
    const Float_t dy = (ymax-ymin)/Float_t(nBinsY);
    Int_t *binx=malloc(nBinsX*sizeof(Int_t));
    Int_t *biny=malloc(nBinsY*sizeof(Int_t));
    Double_t val;

    for(Int_t i = 0; i < nBinsX; i++){
       binx[i] = hist->GetXaxis()->FindBin(xmin+(Float_t(i)+0.5)*dx);
       if(verbose)cout << "bin " <<i << "@ " << binx[i] << "approx " << xmin+(Float_t(i)+0.5)*dx <<endl;
    }
    for(Int_t i = 0; i < nBinsY; i++)
       biny[i] = hist->GetYaxis()->FindBin(ymin+(Float_t(i)+0.5)*dy);

    //done reading header, starting to read the data
    for(Int_t j = 1; j <= nBinsY; j++) {
      for(Int_t i = 1; i <= nBinsX; i++) {
        Int_t bin=hist->GetBin(i,j);
        infile >> val;
	hist->SetBinContent(bin, Float_t(val));
      }
    }	

    hist->GetXaxis()->SetTitle(xlabel);
    hist->GetYaxis()->SetTitle(ylabel);
    hist->GetZaxis()->SetTitle(zlabel);

    hist->SetStats(0);
    hist->SetTitle(compname +" ["+outfilename+"] " + statistics.ReplaceAll(";",""));
    //hist->GetZaxis()->SetTitleOffset(1.4);
    hist->SetOption("colz"); 
    return hist;
}

void mcstas2root(const Char_t* filename, 
		 const Char_t* histname="myhistogram.root",
		 Float_t scaleX=1.0,
		 Float_t scaleY=1.0,
		 bool verbose=0)
{ 
  TFile *file = new TFile(histname,"RECREATE");
  //  std::cout<<format<<std::endl;
  string strhash = "";
  string strdummy = "";
  char strfilename[80]='\0';

  //  ! ".L /home/klinkby/rootalias.C;"
  //  ! "setpawstyle();"
  // Read the content of a PGPLOT file into a histogram
  

  //  Int_t nBins = 0;
  //  Float_t xmin = 0, xmax = 0;
  //  Float_t x, y, ey, nsim;

  
  ifstream infile(filename);
  if(!infile.good()){
    cout << "Cannot open file: " << filename << endl;
    return 0;
  }
  
  std::string line;
  bool plot2D = false;
  while(std::getline(infile, line, '\n')) {
    if (verbose==true)  cout<<line<<endl;

    TString helpString(line);
    if (helpString.Contains("filename")) std::istringstream(line,ios_base::in) >> strhash >> strdummy >> strfilename;
    if (helpString.Contains("zvar")) plot2D = true;
  }
  
  

  if (verbose==true) {
    if (plot2D == false) std::cout<<" Plot 1D found "<<std::endl;
    else if (plot2D == true)  std::cout<<" Plot 2D found "<<std::endl;
  }


    string xlab="";
    string ylab="";
    
    string str1 = "";
    char str2[80]='\0';
    char str3[80]='\0';
    char str4[80]='\0';
    char str5[80]='\0';
    char str_xlab[80] = '\0';
    char str_ylab[80] = '\0';

		  

  // Case 1D
  if (!plot2D) {
    // Read the content of a PGPLOT file into a histogram
    
    TH1F* hist = 0;
  
    Int_t nBins = 0;
    Float_t xmin = 0, xmax = 0;
    Float_t x, y, ey, nsim;
  
    ifstream infile(filename);
    if(!infile.good()){
      //     MakeZombie();
      cout << "Cannot open file: " << filename << endl;
      return 0;
    }
    
    std::string line;
    while(std::getline(infile, line, '\n')) {
      
      TString helpString(line);
      
      if(helpString.Contains("#")) {
	
	if(helpString.Contains("type")) {
	  
        	  sscanf (line.c_str(),"# type: array_1d(%d)",&nBins);
	} else if(helpString.Contains("xlimits")){
	  
	  sscanf (line.c_str(),"# xlimits: %f %f", &xmin, &xmax);	
	}
	
	else if(helpString.Contains("xlabel")) {
	  std::istringstream(line,ios_base::in) >> strhash >> str1>> str2 >>str3;
	  strcat(str_xlab,str2);
	  strcat(str_xlab,str3);
      }
	else if(helpString.Contains("ylabel")) {
	  strhash = "";
	  str1 = "";
	  std::istringstream(line,ios_base::in) >> strhash >> str1>> str4 >>str5;
	  strcat(str_ylab,str4);
	  strcat(str_ylab,str5);
      }
	
	//Done reading header, starting reading the data		
      } else {
	Float_t offset = 27.;
	if(hist==0)
	  hist = new TH1F(histname, 0, nBins, scaleX*xmin+offset, scaleX*xmax+offset);
	
	Int_t res = sscanf(line.c_str(), "%f %f %f %f", &x, &y, &ey, &nsim);
	
	if (res < 2) {
	  // not a data line
	  continue;
	}
	
	x *= scaleX;
	x += offset;
	
	Int_t bin = hist->GetXaxis()->FindBin(x);
	hist->SetBinContent(bin, y);
	hist->SetBinError(bin, ey);
      }
    }
    
    hist->GetYaxis()->SetTitle(str_ylab);
    hist->GetXaxis()->SetTitle(str_xlab);

    hist->Draw();
    hist->SetLineWidth(2);
    hist->SetStats(0);
    hist->Write();
    

    //  char imagefile[80]='\0';
    //  char form2[80]="pdf";
    //  strcat(imagefile,strfilename);
    //  strcat(imagefile,form2);
    //  hist->Print(imagefile);
    c1->SetLogy();

    c1->Print("1Dplot.pdf");
    c1->Print("1Dplot.eps");
    
    return;


    
    //Case 2D
  } else {
    
    // Read the content of a PGPLOT file into a histogram
    
    TH2F* hist = 0;
  
    int  nBinsX = 0, nBinsY = 0;
    Float_t xmin = 0, xmax = 0, ymin = 0, ymax = 0;
    
    
    ifstream infile(filename);
    if(!infile.good()){
      //     MakeZombie();
      cout << "Cannot open file: " << filename << endl;
      return 0;
    }
    
    std::string line;
    double val = 0;
    

    while(std::getline(infile, line, '\n')) {
      if (verbose==true)  cout<<line<<endl;
    
      TString helpString(line);
      
      if(helpString.Contains("#")) {
	
	if(helpString.Contains("type")) {
	  sscanf (line.c_str(),"# type: array_2d(%d, %d)",&nBinsX, &nBinsY);

      } else if(helpString.Contains("xylimits")){
	sscanf (line.c_str(),"# xylimits: %f %f %f %f", 
		&xmin, &xmax, &ymin, &ymax);	

      } else if(helpString.Contains("variables")){
	xmin*=scaleX;
	xmax*=scaleX;
	ymin*=scaleY;
	ymax*=scaleY;
	//	cout << "X: " << nBinsX << ", " << xmin << ", " << xmax << endl;
	//	cout << "Y: " << nBinsY << ", " << ymin << ", " << ymax << endl;
	
	hist = new TH2F(histname, 0, nBinsX, xmin, xmax,
			nBinsY, ymin, ymax);
	
	const int *nx = nBinsX;
	const int *ny = nBinsY;
	const Float_t dx = (xmax-xmin)/Float_t(nx);
	const Float_t dy = (ymax-ymin)/Float_t(ny);
	int binx[&nx];
	int biny[&ny];

	for(Int_t i = 0; i < nBinsX; i++) 
	  binx[i] = hist->GetXaxis()->FindBin(xmin+(Float_t(i)+0.5)*dx);
	
	for(Int_t i = 0; i < nBinsY; i++)
	  biny[i] = hist->GetYaxis()->FindBin(ymin+(Float_t(i)+0.5)*dy);
      }

      if(helpString.Contains("xlabel")) {
        std::istringstream(line,ios_base::in) >> strhash >> str1>> str2 >>str3;
	strcat(str_xlab,str2);
	strcat(str_xlab,str3);
      }

      if(helpString.Contains("ylabel")) {
	strhash = "";
	str1 = "";
        std::istringstream(line,ios_base::in) >> strhash >> str1>> str4 >>str5;
	strcat(str_ylab,str4);
	strcat(str_ylab,str5);
      }

    }
    //done reading header, starting to read the data
      else {

	for(Int_t j = 0; j < nBinsY; j++) {
	  for(Int_t i = 0; i < nBinsX; i++) {
	    infile >> val;
	    hist->SetCellContent(binx[i], biny[j], Float_t(val));
	  }
	}	
    }
  }

    // hist->GetYaxis()->SetTitle(str_ylab);
    //  hist->GetXaxis()->SetTitle(str_xlab);
    //    TCanvas *c1 = new TCanvas("c1","multipads",1200,700);
    hist->GetXaxis()->SetTitle("y [m]");
    hist->GetYaxis()->SetTitle("m");
    hist->GetZaxis()->SetTitle("Signal pr bin");

    hist->Draw("colz");
    hist->SetStats(0);
    hist->Write();
    hist->GetZaxis()->SetTitleOffset(1.4);
    //    TCanvas c1=new TCanvas("c1", "First canvas", 400, 300); // problems here
    //    c1->SetLeftMargin(0.15);
    c1->SetRightMargin(0.15);

    c1->Print("2Dplot.pdf");
    c1->Print("2Dplot.eps");
  
  //  char imagefile[80] = '\0';
  //  strcat(imagefile,filename);
  //  strcat(imagefile,format);

  //  hist->Print(imagefile);

  return;
}

}
//___________________________________________________________________________
TGraphErrors* ReadPGPLOTGraph(const char *filename, Float_t scaleX)
{
  // Read the content of a PGPLOT file into a graph
  TGraphErrors* graph = new TGraphErrors(300);
  
  //  CtorAllocate();
  Double_t x, y, ey, nsim;
  
  ifstream infile(filename);
  if(!infile.good()){
    //     MakeZombie();
    cout << "Cannot open file: " << filename << endl;
    delete graph;
    return 0;
  }
  
  Int_t np = 0;
  
  std::string line;
  while(std::getline(infile, line, '\n')) {
    
    Int_t res = sscanf(line.c_str(), "%lg %lg %lg %lg", &x, &y, &ey, &nsim);
    
    if (res < 2) {
      // not a data line
      continue;
    }

    graph->SetPoint(np, scaleX*x, y);
    graph->SetPointError(np, 0, ey);
    np++;
  }
  graph->Set(np);

  return graph;
}

//___________________________________________________________________________
Double_t FindGraphMax(TGraph* graph)
{

  Int_t nExp = graph->GetN();
  Float_t max = 0;

  for(Int_t i = 0; i < nExp; i++) {
    
    if(graph->GetY()[i]>max)
      max = graph->GetY()[i];
  } 
  
  return max;
}

//___________________________________________________________________________
Int_t FindGraphMaxBin(TGraph* graph)
{

  Int_t   nExp = graph->GetN();
  Float_t max = 0;
  Int_t   bin = -1;

  for(Int_t i = 0; i < nExp; i++) {
    
    if(graph->GetY()[i]>max) {
      max = graph->GetY()[i];
      bin = i;
    }
  } 
  
  return bin;
}       

//______________________________________________________________________________
int plot(int d) {
  return 2*d;
}