Changeset 9896 for trunk/Mars/datacenter/db
- Timestamp:
- 08/26/10 14:35:10 (14 years ago)
- Location:
- trunk/Mars/datacenter/db
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/datacenter/db/mcdefs.php
r9617 r9896 16 16 "fRunTypeName" => CheckWhere("fRunTypeKEY"), 17 17 "fAtmosphericModelName" => CheckWhere("fAtmosphericModelKEY"), 18 "fCeresSetupName" => CheckWhere("fCeresSetupKEY"), 18 19 ); 19 20 … … 23 24 "fRunTypeName" => CheckGroup("fRunTypeKEY"), 24 25 "fAtmosphericModelName" => CheckGroup("fAtmosphericModelKEY"), 26 "fCeresSetupName" => CheckGroup("fCeresSetupKEY"), 25 27 ); 26 28 … … 46 48 "fRunTypeName" => "RunType", 47 49 "fAtmosphericModelName" => "Atm.Model", 50 "fCeresSetupName" => "CeresSetup", 48 51 "fCorsikaInputCreated" => "Input", 49 52 "Corsika" => "Corsika", … … 95 98 "fRunTypeName" => "RunType.fRunTypeKEY", 96 99 "fAtmosphericModelName" => "AtmosphericModel.fAtmosphericModelKEY", 100 "fCeresSetupName" => "CeresSetup.fCeresSetupKEY", 97 101 ); 98 102 … … 116 120 "fRunTypeName" => "RunType.fRunTypeName", 117 121 "fAtmosphericModelName" => "AtmosphericModel.fAtmosphericModelName", 122 "fCeresSetupName" => "CeresSetup.fCeresSetupName", 118 123 "fAzimuthMin" => "CorsikaInfo.fAzimuthMin", 119 124 "fAzimuthMax" => "CorsikaInfo.fAzimuthMax", … … 161 166 "fRunTypeKEY" => " LEFT JOIN RunType USING(fRunTypeKEY) ", 162 167 "fAtmosphericModelKEY" => " LEFT JOIN AtmosphericModel USING(fAtmosphericModelKEY) ", 168 "fCeresSetupKEY" => " LEFT JOIN CeresSetup USING(fCeresSetupKEY) ", 163 169 "fParticleTypeName" => " LEFT JOIN ParticleType USING(fParticleTypeKEY) ", 164 170 "fRunTypeName" => " LEFT JOIN RunType USING(fRunTypeKEY) ", 165 171 "fAtmosphericModelName" => " LEFT JOIN AtmosphericModel USING(fAtmosphericModelKEY) ", 172 "fCeresSetupName" => " LEFT JOIN CeresSetup USING(fCeresSetupKEY) ", 166 173 "CorsikaStatus" => " LEFT JOIN CorsikaStatus USING(fRunNumber, fFileNumber) ", 167 174 "CeresStatus" => " LEFT JOIN CeresStatus USING(fRunNumber, fFileNumber, fCeresSetupKEY) ", -
trunk/Mars/datacenter/db/menu.php
r9617 r9896 38 38 printf(" </td><td>\n"); 39 39 PrintPullDown($host, $user, $pw, $db, "AtmosphericModel", "fAtmosphericModelName", "fAtmosphericModelKEY", "Atm. model"); 40 printf(" </td><td>\n"); 41 PrintPullDown($host, $user, $pw, $db, "CeresSetup", "fCeresSetupName", "fCeresSetupKEY", "Ceres setup"); 40 42 printf(" </td>\n"); 41 43 … … 1672 1674 $_GET["fAtmosphericModelName"]="Off"; 1673 1675 1676 if (empty($_GET["fCeresSetupName"])) 1677 $_GET["fCeresSetupName"]=$first?"On":""; 1678 1674 1679 if (empty($_GET["fNumEvents"])) 1675 1680 $_GET["fNumEvents"]=$first?"On":"";
Note:
See TracChangeset
for help on using the changeset viewer.