Changeset 10011 for trunk/Mars
- Timestamp:
- 10/18/10 15:06:43 (14 years ago)
- Location:
- trunk/Mars/datacenter/db
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/datacenter/db/mcdefs.php
r10005 r10011 41 41 $alias = array 42 42 ( 43 "Run.File" => "Run.File", 44 "fSequenceNumber" => "Sequ", 45 "fNumEvents" => "#Evts", 46 "fNumReUseShowers" => "reused", 47 "SUM(fNumEvents)" => "Evts", 48 "fParticleTypeName" => "Particle", 49 "fRunTypeName" => "RunType", 50 "fAtmosphericModelName" => "Atm.Model", 51 "fCeresSetupName" => "CeresSetup", 52 "fCorsikaInputCreated" => "Input", 53 "Corsika" => "Corsika", 54 "Ceres" => "Ceres", 55 "SequenceFile" => "SequenceFile", 56 "Callisto" => "Callisto", 57 "Star" => "Star", 58 "fZenithDistanceMin" => "Zd<br>Min", 59 "fZenithDistanceMax" => "Zd<br>Max", 60 "fAzimuthMin" => "Az<br>Min", 61 "fAzimuthMax" => "Az<br>Max", 62 "Min(fZenithDistanceMin)" => "ZDMin", 63 "Max(fZenithDistanceMax)" => "ZDMax", 64 "fEnergyMin" => "EMin<br>[GeV]", 65 "fEnergyMax" => "EMax<br>[GeV]", 66 "fImpactMax" => "Impact<br>[cm]", 67 "fViewConeMax" => "View<br>cone<br>[deg]", 68 "fEnergySlope" => "Slope", 69 "fStartingAltitude" => "Altitude<br>[g/sqcm]", 70 "fMirrorDiameter" => "Mirror<br>diam.<br>[cm]", 43 "Run.File" => "Run.File", 44 "fSequenceNumber" => "Sequ", 45 "fNumEvents" => "#Showers", 46 "fNumEvents*fNumReUseShowers" => "#Evts", 47 "fNumReUseShowers" => "reused", 48 "SUM(fNumEvents)" => "Showers", 49 "SUM(fNumEvents*fNumReUseShowers)" => "Evts", 50 "fParticleTypeName" => "Particle", 51 "fRunTypeName" => "RunType", 52 "fAtmosphericModelName" => "Atm.Model", 53 "fCeresSetupName" => "CeresSetup", 54 "fCorsikaInputCreated" => "Input", 55 "Corsika" => "Corsika", 56 "Ceres" => "Ceres", 57 "SequenceFile" => "SequenceFile", 58 "Callisto" => "Callisto", 59 "Star" => "Star", 60 "fZenithDistanceMin" => "Zd<br>Min", 61 "fZenithDistanceMax" => "Zd<br>Max", 62 "fAzimuthMin" => "Az<br>Min", 63 "fAzimuthMax" => "Az<br>Max", 64 "Min(fZenithDistanceMin)" => "ZDMin", 65 "Max(fZenithDistanceMax)" => "ZDMax", 66 "fEnergyMin" => "EMin<br>[GeV]", 67 "fEnergyMax" => "EMax<br>[GeV]", 68 "fImpactMax" => "Impact<br>[cm]", 69 "fViewConeMax" => "View<br>cone<br>[deg]", 70 "fEnergySlope" => "Slope", 71 "fStartingAltitude" => "Altitude<br>[g/sqcm]", 72 "fMirrorDiameter" => "Mirror<br>diam.<br>[cm]", 71 73 ); 72 74 … … 74 76 $rightalign = array 75 77 ( 76 $alias["fSequenceNumber"] => "1", 77 $alias["fNumEvents"] => "1", 78 $alias["fZenithDistanceMin"] => "1", 79 $alias["fZenithDistanceMax"] => "1", 80 $alias["fAzimuthMin"] => "1", 81 $alias["fAzimuthMax"] => "1", 82 $alias["fEnergyMin"] => "1", 83 $alias["fEnergyMax"] => "1", 84 $alias["fImpactMax"] => "1", 85 $alias["fViewConeMax"] => "1", 86 $alias["fEnergySlope"] => "1", 87 $alias["fStartingAltitude"] => "1", 88 $alias["fMirrorDiameter"] => "1", 89 "Time" => "1", 90 "Runs" => "1", 91 "Evts" => "1", 78 $alias["fSequenceNumber"] => "1", 79 $alias["fNumEvents"] => "1", 80 $alias["fNumEvents*fNumReUseShowers"] => "1", 81 $alias["fZenithDistanceMin"] => "1", 82 $alias["fZenithDistanceMax"] => "1", 83 $alias["fAzimuthMin"] => "1", 84 $alias["fAzimuthMax"] => "1", 85 $alias["fEnergyMin"] => "1", 86 $alias["fEnergyMax"] => "1", 87 $alias["fImpactMax"] => "1", 88 $alias["fViewConeMax"] => "1", 89 $alias["fEnergySlope"] => "1", 90 $alias["fStartingAltitude"] => "1", 91 $alias["fMirrorDiameter"] => "1", 92 "Time" => "1", 93 "Runs" => "1", 94 "Evts" => "1", 92 95 ); 93 96 -
trunk/Mars/datacenter/db/menu.php
r10005 r10011 8 8 printf(" <tr valign='top'>\n"); 9 9 10 CheckBox("fNumEvents", "Num of events"); 11 CheckBox("fNumReUseShowers", "reused"); 12 CheckBox("fSequenceNumber", "Sequ#"); 13 14 printf(" </tr><tr>\n"); 15 16 CheckBox("fImpactMax", "Impact"); 17 CheckBox("fViewConeMax", "Viewcone"); 18 CheckBox("fStartingAltitude", "Starting alt."); 19 CheckBox("fMirrorDiameter", "Mirror diam."); 20 21 printf(" </tr><tr>\n"); 22 23 CheckBox("fZenithDistanceMin", "Zenith dist. min"); 24 CheckBox("fZenithDistanceMax", "Zenith dist. max"); 25 CheckBox("fAzimuthMin", "Azimuth min"); 26 CheckBox("fAzimuthMax", "Azimuth max"); 27 28 printf(" </tr><tr>\n"); 29 30 CheckBox("fEnergyMin", "Emin"); 31 CheckBox("fEnergyMax", "Emax"); 32 CheckBox("fEnergySlope", "Slope"); 10 CheckBox("fNumEvents", "Num of showers"); 11 CheckBox("fNumEvents*fNumReUseShowers", "Num of events"); 12 CheckBox("fNumReUseShowers", "reused"); 13 CheckBox("fSequenceNumber", "Sequ#"); 14 15 printf(" </tr><tr>\n"); 16 17 CheckBox("fImpactMax", "Impact"); 18 CheckBox("fViewConeMax", "Viewcone"); 19 CheckBox("fStartingAltitude", "Starting alt."); 20 CheckBox("fMirrorDiameter", "Mirror diam."); 21 22 printf(" </tr><tr>\n"); 23 24 CheckBox("fZenithDistanceMin", "Zenith dist. min"); 25 CheckBox("fZenithDistanceMax", "Zenith dist. max"); 26 CheckBox("fAzimuthMin", "Azimuth min"); 27 CheckBox("fAzimuthMax", "Azimuth max"); 28 29 printf(" </tr><tr>\n"); 30 31 CheckBox("fEnergyMin", "Emin"); 32 CheckBox("fEnergyMax", "Emax"); 33 CheckBox("fEnergySlope", "Slope"); 33 34 34 35 printf(" </tr><tr>\n"); … … 1679 1680 1680 1681 if (empty($_GET["fNumEvents"])) 1681 $_GET["fNumEvents"]=$first?"On":""; 1682 $_GET["fNumEvents"]=$first?"Off":""; 1683 1684 if (empty($_GET["fNumEvents*fNumReUseShowers"])) 1685 $_GET["fNumEvents*fNumReUseShowers"]=$first?"On":""; 1682 1686 1683 1687 if (empty($_GET["fSequenceNumber"])) … … 1718 1722 1719 1723 if (empty($_GET["fNumReUseShowers"])) 1720 $_GET["fNumReUseShowers"]=$first?"O n":"";1724 $_GET["fNumReUseShowers"]=$first?"Off":""; 1721 1725 1722 1726 }
Note:
See TracChangeset
for help on using the changeset viewer.