ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Jeng/scripts/Beam/DownloadBeamSpotTwiki.cpp
Revision: 1.1
Committed: Fri Feb 12 18:03:59 2010 UTC (15 years, 3 months ago) by jengbou
Branch: MAIN
CVS Tags: HEAD
Log Message:
Add scripts for plotting beam positions vs run number (modified from Lorenzo's code)

File Contents

# User Rev Content
1 jengbou 1.1 #include "ReadBeamSpot.h"
2     #include <iostream>
3     #include <string>
4     #include <fstream>
5    
6     using namespace std;
7    
8     int main(){
9     ReadBeamSpot read;
10     read.openHtmlFile("BeamSpotOperations.html");
11     read.findString("refitted");
12     read.closeHtmlFile();
13     return 0;
14     }
15