#include #include #include #include #include #include #include using namespace std; // this program will parse two extinction profiles generated by UltraScan-II's extinction fitter // and return the angle between the two spectra. The calculation made is cos x = (u*v)/(||u||*||v||) // where u and v are the two spectrum vectors. int maxsize; struct spectrum { const char * filename; vector lambda, extinction; int arraysize; }; void parse(struct spectrum *); void check_overlap(vector *); double calc_angle(vector *, int, int); int main () { vector spec; spectrum tmp_spec; spec.clear(); unsigned int i,j; tmp_spec.lambda.clear(); tmp_spec.extinction.clear(); tmp_spec.filename = "CytC-oxidized.extinction.dat"; spec.push_back(tmp_spec); tmp_spec.filename = "CytC-reduced.extinction.dat"; spec.push_back(tmp_spec); for (j=0; jfilename); if (myfile.is_open()) { getline (myfile, line); // get rid of first line, which is text while ( getline (myfile, line) ) { //cout << line << '\n'; char *string = new char[line.length() + 1]; strcpy(string, line.c_str()); token = strtok( string, seps ); tmp_spec->lambda.push_back(atof(token)); token = strtok( NULL, seps ); tmp_spec->extinction.push_back(atof(token)); delete [] string; } } myfile.close(); } void check_overlap(vector *spec) { maxsize=2147483647; int j; double lowest=-1.0; for (j=0; jsize(); j++) { lowest = max(lowest, (*spec)[j].lambda[0]); // find the lowest value common to all spectra } for (j=0; jsize(); j++) { while (lowest > (*spec)[j].lambda[0]) { (*spec)[j].lambda.erase((*spec)[j].lambda.begin()); (*spec)[j].extinction.erase((*spec)[j].extinction.begin()); } (*spec)[j].arraysize = (*spec)[j].lambda.size(); } for (j=0; jsize(); j++) { // cout << (*spec)[j].filename << ": " << (*spec)[j].lambda[0] << ", "; // cout << (*spec)[j].arraysize << endl; maxsize = min(maxsize, (*spec)[j].arraysize); } } double calc_angle(vector *spec, int vec1, int vec2) { int i, j; double val1=0.0, val2=0.0, val3=0.0, tmp; for (i=0; i