Thread file auslesen und bestimmte daten speichern
(9 answers)
Opened by Gast at 2007-07-27 20:37
huhu
also ich bin jetzt nen stück weiter, ich kann den code ausführen und er geht, bis auf, wenn ich eine andere ityp auswähle ändert er es nich also er sucht immer nur die zeilen wo der $ityp=101 ist, ich will aber auch andere suchen können... irgendwie finde ich den fehler nich hier der neue code Code (perl): (dl
)
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 #!/usr/bin/perl # y % mean p_x (y) $dy=.1; while(<>) { @stuff=split(' '); if(/UQMD/){ } elsif(/projectile:/){ $protar=$_ } elsif(/equation_of_state:/){ $ecm=$stuff[5]; $elab=$stuff[3]; $plab=$stuff[7]; } elsif(/event#/){ $noe++ &nbs p; # numbers of events: noe } else{ if($#stuff==14||$#stuff==13){ @x=@stuff[0..3]; @p=@stuff[4..7]; @id=@stuff[8..11]; $mass=$id[0]; $ityp=$id[1]; $iz2=$id[2]; $charge=$id[3]; # ab hier steht folgende info zur verfuegung: # stuff[0] = r_0 = $x[0] # stuff[1] = r_x = $x[1] # stuff[2] = r_y . # stuff[3] = r_z . # stuff[4] = p_0 = $p[0] # stuff[5] = p_x = $p[1] # stuff[6] = p_y . # stuff[7] = p_z . # stuff[8] = mass = $id[0] # stuff[9] = ityp = $id[1] # stuff[10]= iz2 = $id[2] # stuff[11]= charge = $id[3] if ($id[1]== 40){ #if ($ityp== 40 ){ # if ($ityp==1 && $charge==1){ $number++; $pp=sqrt($p[1]*$p[1]+$p[2]*$p[2]+$p[3]*$p[3]); $y=0.5*log(($pp+$p[3])/($pp-$p[3])); $ymin=-4.05; $iy=int(($y-$ymin)/$dy); $n[$iy]++; $symfac=1; if ($sym==1){ $symfac=2; $number++; $y=-0.5*log(($p[0]+$p[3])/($p[0]-$p[3])); $ymin=-20; $iy=int(($y-$ymin)/$dy); $n[$iy]++; } } } } } $midy=0; open(file, ">ausgabe.txt"); print file ("! ",$protar); print file ("!number/event:",$number/$noe," ,ev:",$noe,"\n"); print file ("\n"); print file ("r_0"," ","r_x"," ","r_y"," ","r_z"," ","p_0"," ","p_x"," ","p_y"," ","p_z"," ","mass"," ","ityp"," ","iz2"," ","charge"," \n"); foreach $i(0 .. $#n){ print file ($x[0]," ",$x[1]," ",$x[2]," ",$x[3]," ",$p[0]," ",$p[1]," ",$p[2]," ",$p[3]," ",$id[0]," ",$id[1]," ",$id[2]," ",$id[3],"\n") } close (file); hierein kurzer auszug aus der ausgabe-file: ! projectile: (ityp, char) -1 -1 target: (mass, char) 196 79 !number/event:0.5078 ,ev:10000 r_0 r_x r_y r_z p_0 p_x p_y p_z mass ityp iz2 charge 0.20000000E+04 -0.13675036E+04 0.51647176E+03 0.98528947E+03 0.33243349E+00 -0.24772427E+00 0.80403802E-01 0.15373985E+00 0.13800000E+00 101 2 1 0.20000000E+04 -0.13675036E+04 0.51647176E+03 0.98528947E+03 0.33243349E+00 -0.24772427E+00 0.80403802E-01 0.15373985E+00 0.13800000E+00 101 2 1 0.20000000E+04 -0.13675036E+04 0.51647176E+03 0.98528947E+03 0.33243349E+00 -0.24772427E+00 0.80403802E-01 0.15373985E+00 0.13800000E+00 101 2 1 0.20000000E+04 -0.13675036E+04 0.51647176E+03 0.98528947E+03 0.33243349E+00 -0.24772427E+00 0.80403802E-01 0.15373985E+00 0.13800000E+00 101 2 1 0.20000000E+04 -0.13675036E+04 0.51647176E+03 0.98528947E+03 0.33243349E+00 -0.24772427E+00 0.80403802E-01 0.15373985E+00 0.13800000E+00 101 2 1 0.20000000E+04 -0.13675036E+04 0.51647176E+03 0.98528947E+03 0.33243349E+00 -0.24772427E+00 0.80403802E-01 0.15373985E+00 0.13800000E+00 101 2 1 0.20000000E+04 -0.13675036E+04 0.51647176E+03 0.98528947E+03 0.33243349E+00 -0.24772427E+00 0.80403802E-01 0.15373985E+00 0.13800000E+00 101 2 1 |